-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathp6_signup.php
154 lines (124 loc) · 5.14 KB
/
p6_signup.php
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?php session_start(); ?>
<!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>Login Page</title>
<!-- boxicon link -->
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<!-- import css -->
<link rel="stylesheet" href="./css/styles.css">
<!-- favicon (title of page image) -->
<link rel="icon" href="/images/favicon.JPG" sizes="32x32" type="image/JPG">
<script src="https://code.jquery.com/jquery-3.3.1.js" integity="sha256-2Kok7Mb0yxpgUVvAk/H32jig0SYS2auk4Pfzbm7uH60=" crossorigin "anonymous"></script>
<script>
$(function() {
$('#footer').load("./assets/php/footer.php");
});
</script>
<style>
label {
display: block;
padding-left: 15px;
text-indent: -15px;
}
input {
width: 15px;
height: 15px;
padding: 0;
margin: 0;
vertical-align: bottom;
position: relative;
top: -1px;
}
</style>
</head>
<body>
<!-- Header -->
<header class="header">
<a href="./index.php " class="logo"> <i class="bx bxs-cricket-ball"></i> 50/10</a>
<!-- menu -->
<nav class="navbar">
<a href="./index.php">home</a>
<a href="#aisles" id="aisles-btn">Aisles</a>
<a href="./about.php">about us</a>
<a href="./p7_backstore.php">Backstore</a>
</nav>
<div class="aisles-menu">
<a href="./p2_fruitaisle.php">Fruits</a>
<a href="./p2_VegetablesAisle.php">Vegetables</a>
<a href="./p2_DairyAisle.php">Dairy</a>
<a href="./p2_MeatAisle.php">Meat</a>
<a href="./p2_PastryAisle.php">Pastry</a>
<a href="./p2_SnacksAisle.php">Snacks</a>
<a href="./p2_SeafoodAisle.php">Seafood</a>
<a href="./p2_WaterAisle.php">Drinks</a>
</div>
<!-- buttons -->
<div class="icons">
<div class='bx bx-menu-alt-right' id="menu-btn"></div>
<div class='bx bx-search-alt' id="search-btn"></div>
<div class='bx bx-cart' id="cart-btn"></div>
<div class='bx bx-log-in-circle' id="log-btn"></div>
</div>
<!-- search -->
<form action="" class="search-form">
<input type="search" id="search-box" placeholder="Search...">
<label for="search-box" class="bx bx-search-alt"></label>
</form>
<!-- cart -->
<div class="cart">
<div class="box">
<i class='bx bx-trash'></i>
<img src="./images/k.jpg" alt="">
<div class="content">
<h3>Name</h3>
<span class="price">price$</span>
<span class="quantity">qty: variable</span>
</div>
</div>
<div class="box">
<i class='bx bx-trash'></i>
<img src="./images/k.jpg" alt="">
<div class="content">
<h3>name</h3>
<span class="price">price$</span>
<span class="quantity">qty: variable</span>
</div>
</div>
<div class="total">total: totalPrice$</div>
<a href="./p4_cart.php" class="btn">Review Items</a>
</div>
<!-- login -->
<form action="" class="login-form">
<h3>log in</h3>
<input type="email" placeholder="enter email" class="box">
<input type="password" placeholder="enter password" class="box">
<br>
<a href="https://alzheimer.ca/sites/default/files/documents/alzheimers-disease_getting-a-diagnosis_0.pdf" target="_blank">forgot your password?</a>
<a href="./p6_signup.php">Create An Account</a>
<a href="#" class="btn"> Login Now </a>
</form>
</header>
<!--END OF HEADER-->
<main>
<form action="#" method="post">
<div class="login-container">
<h1 class="section-title"><span>Sign up</span></h1>
<input type="text" name="name" placeholder="enter your name"><br>
<input type="text" name="email" placeholder="enter email"> <br>
<input type="password" name="pwd" placeholder="enter password"><br>
<input type="password" name="pwdrepeat" placeholder="enter password again"><br>
<input type="text" name="postal" placeholder="enter your postal code"><br>
<a href="./p5_login.php">I already have an account</a><br>
<a href="#" type="submit" name="operationtype" value="signup" class="login-btn"> Sign up Now </a>
</div>
</form>
</main>
<!---- Footer --->
<div id="footer"></div>
<script src="js/script.js"></script>
</body>
</html>