-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSignup.html
55 lines (47 loc) · 1.34 KB
/
Signup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Daily UI - Day 1 Sign In</title>
<!-- Google Fonts -->
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700|Lato:400,100,300,700,900' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/animate.css">
<!-- Custom Stylesheet -->
<link rel="stylesheet" href="css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
</head>
<body>
<div class="container">
<div class="top">
<h1 id="title" class="hidden"><span id="logo">Registration Details <span></span></span></h1>
</div>
<div class="login-box animated fadeInUp">
<div class="box-header">
<h2>Sign Up</h2>
</div>
<label for="username">Username</label>
<br/>
<input type="text" id="username">
<br/>
<label for="age">Age</label>
<br/>
<input type="number" id="age">
<br/>
<label for="phone">Phone Number</label>
<br/>
<input type="text" id="phone">
<br/>
<label for="password">Password</label>
<br/>
<input type="password" id="password">
<br/>
<label for="rpassword">Re Enter Password</label>
<br/>
<input type="text" id="rpassword">
<br/>
<a href="booking.html"><p class="small"></p><button type="submit">Sign In</button></a>
<br/>
</div>
</div>
</body>
</html>