-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGitHub_Login.html
114 lines (113 loc) · 2.81 KB
/
GitHub_Login.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=>" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>GitHub Login</title>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
}
.paragraph {
width: 260px;
font-size: 11.5px;
color: rgb(122, 123, 126);
margin-left: 5px;
line-height: 18px;
}
.inputs {
width: 260px;
height: 43px;
border-radius: 5px;
border: groove;
margin-top: 8px;
}
#lastInput {
margin-bottom: -5px;
}
.labelClass {
font-size: 13px;
margin-top: -100px;
color: rgb(92, 93, 95);
}
.button {
background-color: rgb(42, 189, 72);
width: 260px;
height: 70px;
color: white;
font-size: 16px;
font-family: Verdana, Geneva, sans-serif;
border-radius: 5px;
text-align: middle;
margin-bottom: -5px;
}
#tab1 {
margin-left: 12px;
}
#tab2 {
margin-left: 10px;
}
body > section > p > a {
text-decoration: none;
}
body > section {
font-size: 12px;
}
body {
margin-left: 15px;
}
</style>
</head>
<body>
<form>
<label for="first" class="labelClass">Username<br /></label>
<input
type="text"
name="username"
placeholder=" Pick a username"
class="inputs"
id="first"
/><br />
<label for="second" class="labelClass"><br />Email<br /></label>
<input
type="text"
name="email"
placeholder=" [email protected]"
class="inputs"
id="second"
/><br />
<label for="third" class="labelClass"><br />Password<br /></label>
<input
id="lastInput"
type="text"
name="password"
placeholder=" Create a password"
class="inputs"
id="third"
/><br />
<p class="paragraph">
Make sure it's more than 15 characters, or at least 8 characters,
including a number, and a lowercase letter.
</p>
<button class="button" type="submit">Sign up for GitHub</button>
</form>
<section>
<p class="paragraph">
By clicking "Sign up fot GitHub", you agree to our
<a
href="https://help.github.com/articles/github-terms-of-service/"
id="tab1"
>
terms of service</a
>
and
<a href="https://help.github.com/articles/github-privacy-statement/"
>privacy statement.</a
>
We'll
<text id="tab2"> occasionally send you account related emails.</text>
</p>
</section>
</body>
</html>