30 lines
1.2 KiB
HTML
30 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Login - GoalsBreakDown</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
|
|
</head>
|
|
<body class="auth-page">
|
|
<div class="auth-container">
|
|
<h1>Login</h1>
|
|
<form id="login-form" autocomplete="off">
|
|
<div class="form-group">
|
|
<label for="username">Username</label>
|
|
<input type="text" id="username" name="username" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="password">Password</label>
|
|
<input type="password" id="password" name="password" required>
|
|
</div>
|
|
<div id="error-message" class="error-message"></div>
|
|
<button type="submit" class="btn-primary">Login</button>
|
|
</form>
|
|
<p class="auth-link">Don't have an account? <a href="/register">Register</a></p>
|
|
</div>
|
|
<script src="{{ url_for('static', filename='js/api.js') }}"></script>
|
|
<script src="{{ url_for('static', filename='js/auth.js') }}"></script>
|
|
</body>
|
|
</html>
|