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
353 B
Django/Jinja
13 lines
353 B
Django/Jinja
{% extends 'base.html.j2' %}
|
|
|
|
{% block title %}Login{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Login</h1>
|
|
<p>Enter your email to receive a 6-digit verification code.</p>
|
|
<form method="POST">
|
|
<label for="email">Email:</label>
|
|
<input type="email" name="email" required>
|
|
<button type="submit">Get Verification Code</button>
|
|
</form>
|
|
{% endblock %}
|