-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
38 lines (37 loc) · 1.3 KB
/
form.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
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>mini-ui.css</title>
<link rel="stylesheet" href="global.css" />
</head>
<body>
<div class="container">
<hr />
<!-- Form -->
<div class="form">
<form>
<mini-ui-paper>
<div>
<label for="email">Email</label>
<input
type="email"
id="email"
name="email"
placeholder="[email protected]"
/>
</div>
<div style="height: 12px"></div>
<div>
<label for="password">Password</label>
<input type="password" id="password" name="password" />
</div>
<div style="height: 24px"></div>
<button type="submit" style="width: 300px">Login</button>
</mini-ui-paper>
</form>
</div>
</div>
</body>
</html>