Drew Short
6 years ago
5 changed files with 158 additions and 37 deletions
-
6app.py
-
105static/style.css
-
22templates/admin.html
-
42templates/base.html
-
20templates/register.html
@ -0,0 +1,105 @@ |
|||
nav { |
|||
overflow: hidden; |
|||
padding: 0px 0px; |
|||
} |
|||
|
|||
nav h1 { |
|||
display: block; |
|||
float: left; |
|||
} |
|||
|
|||
nav ul { |
|||
display: block; |
|||
float: right; |
|||
} |
|||
|
|||
nav ul li { |
|||
display: block; |
|||
float: left; |
|||
padding-left: 1em; |
|||
} |
|||
|
|||
#activeRegistrationCodes { |
|||
display: block; |
|||
width: 100%; |
|||
} |
|||
|
|||
#activeRegistrationCodes table { |
|||
margin: 0 auto; /* or margin: 0 auto 0 auto */ |
|||
} |
|||
|
|||
#registeredUsers { |
|||
display: block; |
|||
width: 100%; |
|||
} |
|||
|
|||
#registeredUsers table { |
|||
margin: 0 auto; /* or margin: 0 auto 0 auto */ |
|||
} |
|||
|
|||
table { |
|||
border-collapse: collapse; |
|||
} |
|||
|
|||
table tr:nth-child(even) { |
|||
background: #CCC |
|||
} |
|||
|
|||
table th, td { |
|||
padding-left: 1em; |
|||
padding-right: 1em; |
|||
text-align: center; |
|||
height: 2.5em; |
|||
} |
|||
|
|||
table tbody td { |
|||
border: 1px solid black; |
|||
} |
|||
|
|||
table tbody tr .borderless { |
|||
border: none; |
|||
background: white; |
|||
} |
|||
|
|||
#register { |
|||
width: 100%; |
|||
text-align: center; |
|||
} |
|||
|
|||
#register form { |
|||
display: inline-block; |
|||
} |
|||
|
|||
form div .row { |
|||
display: table-cell; |
|||
} |
|||
|
|||
label { |
|||
display: inline-block; |
|||
float: left; |
|||
clear: left; |
|||
width: 250px; |
|||
text-align: right; |
|||
padding-right: 1em; |
|||
vertical-align: middle; |
|||
} |
|||
|
|||
input { |
|||
display: inline-block; |
|||
float: left; |
|||
vertical-align: middle; |
|||
width: auto; |
|||
} |
|||
|
|||
.formSubmit input { |
|||
float: right; |
|||
} |
|||
|
|||
.flashMessages { |
|||
padding: 1em; |
|||
} |
|||
|
|||
.flash { |
|||
width: 100%; |
|||
text-align: center; |
|||
} |
@ -1,24 +1,26 @@ |
|||
<!doctype html> |
|||
<title>{% block title %}{% endblock %} - Matrix</title> |
|||
<title>{% block title %}{% endblock %} - NullOctet Matrix</title> |
|||
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> |
|||
{#<nav>#} |
|||
{# <h1>Flaskr</h1>#} |
|||
{# <ul>#} |
|||
{# {% if g.user %}#} |
|||
{# <li><span>{{ g.user['username'] }}</span>#} |
|||
{# <li><a href="{{ url_for('auth.logout') }}">Log Out</a>#} |
|||
{# {% else %}#} |
|||
{# <li><a href="{{ url_for('auth.register') }}">Register</a>#} |
|||
{# <li><a href="{{ url_for('auth.login') }}">Log In</a>#} |
|||
{# {% endif %}#} |
|||
{# </ul>#} |
|||
{#</nav>#} |
|||
<nav> |
|||
<h1>NullOctet Matrix</h1> |
|||
<ul> |
|||
{% if g.user %} |
|||
<li><span>{{ g.user['username'] }}</span> |
|||
<li><a href="{{ url_for('admin_logout') }}">Log Out</a> |
|||
{% else %} |
|||
<li><a href="{{ url_for('registration') }}">Register</a> |
|||
<li><a href="{{ url_for('admin_login') }}">Log In</a> |
|||
{% endif %} |
|||
</ul> |
|||
</nav> |
|||
<section class="content"> |
|||
<header> |
|||
{% block header %}{% endblock %} |
|||
</header> |
|||
{% for message in get_flashed_messages() %} |
|||
<div class="flash">{{ message }}</div> |
|||
{% endfor %} |
|||
{% block content %}{% endblock %} |
|||
<header> |
|||
{% block header %}{% endblock %} |
|||
</header> |
|||
<div class="flashMessages"> |
|||
{% for message in get_flashed_messages() %} |
|||
<div class="flash">{{ message }}</div> |
|||
{% endfor %} |
|||
</div> |
|||
{% block content %}{% endblock %} |
|||
</section> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue