- Introduced a new CSS file for form styles (forms.css) to enhance form layout and design. - Removed deprecated button styles from imports.css and updated button classes across templates to use the new utility classes. - Updated various templates to reflect the new button styles, ensuring a consistent look and feel throughout the application. - Refactored form-related styles in main.css and removed redundant styles from projects.css and scenarios.css. - Ensured responsive design adjustments for form actions in smaller viewports.
35 lines
978 B
HTML
35 lines
978 B
HTML
{% extends "base.html" %} {% block title %}Login{% endblock %} {% block content
|
|
%}
|
|
<div class="container">
|
|
<h1>Login</h1>
|
|
{% if errors %}
|
|
<div class="alert alert-error">
|
|
<ul>
|
|
{% for error in errors %}
|
|
<li>{{ error }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|
|
<form id="login-form" method="post" action="{{ form_action }}">
|
|
<div class="form-group">
|
|
<label for="username">Username:</label>
|
|
<input
|
|
type="text"
|
|
id="username"
|
|
name="username"
|
|
value="{{ username | default('') }}"
|
|
required
|
|
/>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="password">Password:</label>
|
|
<input type="password" id="password" name="password" required />
|
|
</div>
|
|
<button type="submit" class="btn btn--primary">Login</button>
|
|
</form>
|
|
<p>Don't have an account? <a href="/register">Register here</a></p>
|
|
<p><a href="/forgot-password">Forgot password?</a></p>
|
|
</div>
|
|
{% endblock %}
|