-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (52 loc) · 1.18 KB
/
index.html
File metadata and controls
56 lines (52 loc) · 1.18 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>Title</title>
</head>
<body>
<div>
<div>
<form action="">
<div>
<label for="name">Name:</label>
<input type="text" id="name">
</div>
<div>
<label for="password">Password:</label>
<input type="password" id="password">
</div>
<div>
<label for="GitHub">GitHub Username:</label>
<input type="name" id="GitHub">
</div>
</form>
</div>
<div>
<form action="">
<p>Please select the tier that meets your requirements:</p>
<ul>
<div>
<input type="radio" id="Enterprise">
<label for="Enterprise">Enterprise</label>
</div>
<div>
<input type="radio" id="Pro">
<label for="Pro">Pro</label>
</div>
<div>
<input type="radio" id="Free">
<label for="Free">Free</label>
</div>
</ul>
</form>
<div>
<form action="">
<input type="checkbox" id="RememberMe">
<label for="RememberMe">Remember Me Always And Forever</label>
</form>
</div>
</div>
</div>
</body>
</html>