-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecond.html
91 lines (89 loc) · 2.87 KB
/
second.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
<!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="./Styles/second.css" />
<title>Registration-personal-information</title>
</head>
<body>
<div class="main flex">
<div class="left-side">
<div class="top flex">
<img src="./Images/Vector.png" alt="vector-logo" />
<h3 class="text">Redberry Knight Cup</h3>
</div>
<div class="photo">
<img src="./Images/second-page.png" alt="chess-photo" />
<h1 class="quote">
“When you see a good move, <br />
look for a better one.”
</h1>
<h2 class="author">-Emanuel Lasker</h2>
</div>
</div>
<div class="right-side">
<div class="top">
<h3 class="account flex">Start creating your account</h3>
<hr class="line" />
</div>
<div class="switch-parent flex">
<h2 class="text-personal">Personal information</h2>
<h3 class="text-chess">Chess experience</h3>
<div class="switch flex">
<div class="personal-info">
<h3>1</h3>
</div>
<hr class="connector" />
<div class="experience">
<h3>2</h3>
</div>
</div>
</div>
<div class="title">
<h1 class="title-main">Personal information</h1>
<h2 class="sub-title">This is basic informaton fields</h2>
</div>
<form class="form" id="form" method="post" action="chess.html">
<div class="form-control">
<input type="text" placeholder="Name" class="name" id="name" />
<small>Error message</small>
</div>
<div class="form-control">
<input
type="email"
placeholder="Email adress"
class="email"
id="email"
/>
<small>Error message</small>
</div>
<div class="form-control">
<input type="tel" placeholder="Phone number" class="tel" id="tel" />
<small>Error message</small>
</div>
<div class="form-control">
<input
type="text"
class="date"
id="date"
placeholder="Date of birth"
onfocus="(this.type='date')"
/>
<small>Error message</small>
</div>
<div class="button-back">
<a href="second.html">
<h2>Back</h2>
</a>
</div>
<button class="button">
<img src="./Images/next.png" alt="Next-page" />
</button>
</form>
</div>
</div>
<script src="script.js"></script>
</body>
</html>