-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (105 loc) · 4.28 KB
/
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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- <link rel="stylesheet" href="../css/style.css" /> -->
<link rel="stylesheet" href="./dist/css/style.min.css" />
<title>Journey</title>
</head>
<body>
<div class="background">
<div class="header">
<div class="header__container">
<h1 class="header__logo">journey</h1>
<div class="header__icons">
<span class="icon icon__calendar"></span>
<span class="icon icon__chat"></span>
<span class="icon icon__compass"></span>
</div>
<div class="header__line"></div>
<div class="header__exit">
<p>
Welcome, <a class="log" href="#">Log In</a>
or
<a class="sing" href="#">Sing Up</a>
</p>
</div>
</div>
</div>
<div class="center">
<div class="form-card">
<div class="form-card__header">
<div class="square"></div>
<h2>Sing Up</h2>
<a class="log" href="#">Log In</a>
</div>
<div class="alternative-sing">
<button class="button button__facebook">
<img src="./dist/img/facebook.png" alt="" />
<div class="button__line"></div>
<span> facebook </span>
</button>
<button class="button button__google">
<img src="./dist/img/google.png" alt="" />
<div class="button__line"></div>
<span> google </span>
</button>
</div>
<div class="or"><span> or </span></div>
<form action="">
<input
class="input-text"
type="text"
placeholder="First Name"
maxlength="25"
required
autofocus
/>
<input
class="input-text"
type="text"
placeholder="Last Name"
maxlength="25"
required
/>
<input
class="input-text"
type="email"
placeholder="Email"
maxlength="50"
required
/>
<input
class="input-text"
type="password"
placeholder="Choose Password"
minlength="8"
maxlength="30"
required
/>
<input
class="input-text"
type="password"
placeholder="Confirm Password"
minlength="8"
maxlength="30"
required
/>
<input type="checkbox" id="terms" required />
<label for="terms"
>Agree our
<a class="terms" href="#">Terms & Condition</a>
</label>
<input
class="button button__submit"
type="submit"
value="Create Account"
/>
</form>
</div>
</div>
</div>
</body>
</html>