-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (25 loc) · 915 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Flutter</title>
<link rel="stylesheet" href="css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
</head>
<body>
<div class="auth">
<form class="auth-form" id="login-form">
<h1 class="auth-title">Flutter</h1>
<h2 class="auth-subtitle">Login</h2>
<div class="errors" id="errors"></div>
<input type="email" name="email" placeholder="Email" class="auth-input" />
<input type="password" name="password" placeholder="Password" class="auth-input" />
<div class="auth-actions">
<button type="submit" class="auth-button">Submit</button>
<a href="register.html" title="Create account" class="auth-link">Create account</a>
</div>
</form>
</div>
</body>
</html>