modified: app.py new file: templates/admin_dashboard.html.j2 new file: templates/base.html.j2 new file: templates/daily_leaderboard.html.j2 new file: templates/daily_puzzle.html.j2 new file: templates/home.html.j2 new file: templates/invite_admin.html.j2 new file: templates/king_of_the_mountain.html.j2 new file: templates/leaderboard_index.html.j2 new file: templates/login.html.j2 new file: templates/manage_admins.html.j2 new file: templates/profile.html.j2 new file: templates/puzzle_menu.html.j2 new file: templates/upload.html.j2 new file: templates/verify.html.j2
18 lines
365 B
Django/Jinja
18 lines
365 B
Django/Jinja
{% extends 'base.html.j2' %}
|
|
|
|
{% block title %}Invite Admin{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Invite a New Admin</h1>
|
|
|
|
<form method="POST">
|
|
<label for="email">User Email:</label>
|
|
<input type="email" name="email" required>
|
|
<button type="submit">Send Invitation</button>
|
|
</form>
|
|
|
|
{% if message %}
|
|
<p>{{ message }}</p>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|