17 lines
902 B
HTML
17 lines
902 B
HTML
{% extends "layouts/base.html" %}
|
|
{% block title %}Login - TryoutPro{% endblock %}
|
|
{% block auth_content %}
|
|
<form method="POST" action="{{ url_for('auth.login') }}" class="auth-form">
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
|
|
<div class="form-group">
|
|
<label for="username"><i class="fas fa-user"></i> Username</label>
|
|
<input type="text" id="username" name="username" placeholder="Enter your username" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="password"><i class="fas fa-lock"></i> Password</label>
|
|
<input type="password" id="password" name="password" placeholder="Enter your password" required>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary btn-block">Sign In</button>
|
|
<p class="auth-link">Don't have an account? <a href="{{ url_for('auth.register') }}">Register here</a></p>
|
|
</form>
|
|
{% endblock %} |