f43b13f625
- Created `__init__.py` for blueprint registration. - Implemented `auth.py` for user authentication (login, register, logout). - Added `admin.py` for admin functionalities (user management, stats). - Developed `dashboard.py` for user dashboard displaying user info and generated content. - Created `gallery.py` for managing and displaying images and videos. - Implemented `generate.py` for text, image, and video generation functionalities. - Added `profile.py` for user profile management. - Updated templates to reflect new route structures and improve navigation.
25 lines
613 B
HTML
25 lines
613 B
HTML
{% extends "base.html" %} {% block title %}Register — All You Can GET AI{%
|
|
endblock %} {% block content %}
|
|
<div class="card">
|
|
<h1>Create account</h1>
|
|
<form method="post">
|
|
<label for="email">Email</label>
|
|
<input id="email" name="email" type="email" required autofocus />
|
|
|
|
<label for="password">Password</label>
|
|
<input
|
|
id="password"
|
|
name="password"
|
|
type="password"
|
|
required
|
|
minlength="8"
|
|
/>
|
|
|
|
<button type="submit">Register</button>
|
|
</form>
|
|
<p>
|
|
Already have an account? <a href="{{ url_for('auth.login') }}">Log in</a>
|
|
</p>
|
|
</div>
|
|
{% endblock %}
|