A simple web application that allows invitation based registration to a matrix instance
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<!doctype html> <title>{% block title %}{% endblock %} - NullOctet Matrix</title> <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> <nav> <h1>NullOctet Matrix</h1> <ul> {% if g.user %} <li><span>{{ g.user['username'] }}</span> <li><a href="{{ url_for('admin_index') }}">Admin Panel</a> <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> <div class="flashMessages"> {% for message in get_flashed_messages() %} <div class="flash">{{ message }}</div> {% endfor %} </div> {% block content %}{% endblock %} </section>
|