-
Notifications
You must be signed in to change notification settings - Fork 0
/
register.html
117 lines (97 loc) · 4.37 KB
/
register.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
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Oasis_Cafe|Register</title>
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<!--custom css file link-->
<link rel="stylesheet" href="css/styleoasis.css">
</head>
<body>
<header class="header">
<section class="flex">
<a href="1_home.html" class="logo">
<img src="images/logo.png" alt="logo"></a>
<nav class = "navbar">
<a href="1_home.html">HOME</a>
<a href="2_about.html">ABOUT</a>
<a href="3_menu.html">MENU</a>
<a href="4_orders.html">ORDERS</a>
<a href="5_contact.html">CONTACT</a>
</nav>
<div class="icons">
<a href="search.html"><i class="fa fa-search"></i></a>
<a href="cart.html"><i class="fa fa-shopping-cart"></i></a>
<div id="user-btn" class="fa fa-user"></div>
<div id="menu-btn" class="fa fa-bars"></div>
</div>
<div class="profile">
<p class="name"></p>
<div class="flex">
<a href="profile.html" class="btn">PROFILE</a>
<a href="#" class="delete-btn">LOGOUT</a>
</div>
<p class="account"><a href="login.html">LOGIN</a> or
<a href="register.html">REGISTER</a></p>
</div>
</section>
</header>
<br>
<section class="form-container">
<form action="" method="post">
<h3 class="subtitle">Register Now</h3>
<input type="text" required maxlength="20" name="name" placeholder="Enter your Name" class="box"
oninput="this.value = this.value.replace(/\s/g, '')">
<input type="email" required maxlength="50" name="email" placeholder="Enter your Email" class="box"
oninput="this.value = this.value.replace(/\s/g, '')">
<input type="number" min="0" max="9999999999" onkeypress="if(this.value.length == 10) return false;"
placeholder="Enter your Number" required class="box" name="number">
<input type="password" required maxlength="20" name="pass" placeholder="Enter your Password"
class="box" oninput="this.value = this.value.replace(/\s/g, '')">
<input type="password" required maxlength="20" name="cpass" placeholder="Confirm your Password"
class="box" oninput="this.value = this.value.replace(/\s/g, '')">
<input type="submit" value="register now" class="btn" name="submit">
<p>Already have an Account? <a href="login.html">Login Now</a></p>
</form>
</section>
<footer class="footer">
<section class="grid">
<div class="box">
<img src="images/logocontact.png" alt="">
<h3>Our EMAIL</h3>
<a href="mailto:oasiscafe23@gmail.com">oasiscafe23@gmail.com</a>
</div>
<div class="box">
<img src="images/logoclock.png" alt="">
<h3>Opening Hours</h3>
<p>07:00 AM to 10:00 PM</p>
</div>
<div class="box">
<img src="images/logolocation.png" alt="">
<h3>Our Location</h3>
<a href="#">Bhubaneswar, Odisha - 751024</a>
</div>
<div class="box">
<img src="images/logonumber.png" alt="">
<h3>Our Contact</h3>
<a href="tel:1234509876">123-450-9876</a><br>
<a href="tel:9876012345">987-601-2345</a>
</div>
</section>
<div class="credit">
<a href="#" target="_blank">FAQ</a>
<a href="#" target="_blank">Contact Us</a>
<a href="#" target="_blank">Terms of Use</a>
<a href="#" target="_blank">Privacy Policy</a>
<a href="#" target="_blank">Refund Policy</a>
<p>Created by <span>Soumya Dandapat</span> | © 2023-Oasis Cafe </p>
</div>
</footer>
<div class="loader">
<img src="images/loader.gif" alt="">
</div>
<script src="JS/scriptoasis.js"></script>
</body>
</html>