new file: .gitignore new file: app.py new file: requirements.txt new file: templates/base.html.j2 new file: templates/edit_media.html.j2 new file: templates/home.html.j2 new file: templates/import_user_record.html.j2 new file: templates/list_media.html.j2 new file: templates/login.html.j2 new file: templates/profile.html.j2 new file: templates/upload_media.html.j2 new file: templates/user_media.html.j2 new file: templates/verify.html.j2 new file: templates/view_media.html.j2 new file: templates/view_media_details.html.j2
13 lines
467 B
Django/Jinja
13 lines
467 B
Django/Jinja
{% extends 'base.html.j2' %}
|
|
|
|
{% block title %}Verify Account{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Verify Your Account</h1>
|
|
<p>A 6-digit code has been sent to your email. Please enter it below to verify your account.</p>
|
|
<form method="POST">
|
|
<label for="code">Verification Code:</label>
|
|
<input type="text" name="code" required pattern="\d{6}" minlength="6" maxlength="6" inputmode="numeric">
|
|
<button type="submit">Verify</button>
|
|
</form>
|
|
{% endblock %}
|