-
Notifications
You must be signed in to change notification settings - Fork 2
/
signup.html
102 lines (95 loc) · 3.83 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
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
<!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">
<title>SignUp</title>
<link rel="icon" type="image/x-icon" href="Icons/Hotelicon.png" />
<link rel="stylesheet" href="signup.css">
</head>
<body>
<nav class="navigation">
<a href="index.html" class="navbar-logo">Hotel Transylvania</a>
<a class="login-btn" href="signup.html">SignUp</a>
<a class="login-btn" href="login.html">Login</a>
<div class="navbar-right">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="#">Contact</a>
</div>
</nav>
<main>
<div class="login_box">
<h2>SignUp</h2>
<div class="profile">
<h3>SignUp As:</h3>
<select id="book_for_" name="monster/human" required onchange="choose_profile()">
<option value="" selected hidden>Choose...</option>
<option value="human">Human</option>
<option value="monster">Monster</option>
</select>
</div>
<form>
<div class="user_box">
<input type="text" name="username" required>
<label>Enter Your Name</label>
</div>
<div class="user_box">
<input type="text" name="username" required>
<label>Create Username</label>
</div>
<div class="user_box">
<input type="email text" name="username" required>
<label>Enter E-mail Address</label>
</div>
<div class="user_box">
<input type="password" name="password" required id="password">
<label>Create Password</label>
</div>
<div class="user_box">
<input type="text" name="password" required id="confirm_password">
<label>Confirm Password</label>
</div>
<div class="message"></div>
<div class="button_form">
<button id="create">Create Account</button>
<div id="login">
Already have an account ?
<a href="login.html">Login</a>
</div>
</div>
</form>
</div>
</main>
<footer>
<div class="copyright">Copyright © 2022 Hotel Transylvania</div>
<div class="contact">
<div class="contact-box">
<img src="https://img.icons8.com/ios-filled/512/company.png" alt="building" width=60px><br>
<label>Location</label><br>
Lorem, ipsum dolor.
</div>
<div class="contact-box">
<img src="https://img.icons8.com/ios-filled/512/ringing-phone.png" alt="phone" width=60px><br>
<label>Phone</label><br>
+91 123456789
</div>
<div class="contact-box">
<img src="https://img.icons8.com/ios-glyphs/512/mail-account.png" alt="e-mail" width=60px><br>
<label>E-Mail</label><br>
</div>
</div>
</footer>
<script src="signup.js"></script>
<script src="https://www.gstatic.com/dialogflow-console/fast/messenger-cx/bootstrap.js?v=1"></script>
<df-messenger
df-cx="true"
location="asia-south1"
chat-title="booking_agent"
agent-id="1fb34e13-e233-4d07-b30a-623f8dee47a9"
language-code="en"
></df-messenger>
</body>
</html>