Spaces:
Runtime error
Runtime error
Create templates/login.html
Browse files
flask-salesforce-app/templates/login.html
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<title>Login</title>
|
5 |
+
<link rel="stylesheet" href="/static/styles.css">
|
6 |
+
</head>
|
7 |
+
<body>
|
8 |
+
<div class="form-container">
|
9 |
+
<h1>Login</h1>
|
10 |
+
<form action="/auth" method="POST">
|
11 |
+
<label for="email">Email:</label>
|
12 |
+
<input type="email" name="email" id="email" required>
|
13 |
+
<label for="password">Password:</label>
|
14 |
+
<input type="password" name="password" id="password" required>
|
15 |
+
<button type="submit">Login</button>
|
16 |
+
</form>
|
17 |
+
</div>
|
18 |
+
</body>
|
19 |
+
</html>
|