Spaces:
No application file
No application file
Create login.html
Browse files- templates/login.html +20 -0
templates/login.html
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="pt-BR">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<title>Login</title>
|
6 |
+
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
|
7 |
+
</head>
|
8 |
+
<body>
|
9 |
+
<div class="container">
|
10 |
+
<h1>Login</h1>
|
11 |
+
<form method="post">
|
12 |
+
<label>Email:</label>
|
13 |
+
<input type="email" name="email" required>
|
14 |
+
<label>Senha:</label>
|
15 |
+
<input type="password" name="password" required>
|
16 |
+
<button type="submit">Entrar</button>
|
17 |
+
</form>
|
18 |
+
</div>
|
19 |
+
</body>
|
20 |
+
</html>
|