-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.php
97 lines (93 loc) · 2.72 KB
/
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
<?php include('server.php'); ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width , initial-scale= 1.0">
<title> All Products -URcart </title>
<link rel="stylesheet" type="text/css" href="style1.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="container">
<div class="navbar">
<div class="logo">
<img src="images/logo.png" width="125px">
</div>
<nav>
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Account</a></li>
</ul>
</nav>
<img src="images/cart.png" width="30px" height="30px">
<img src="images/menu.png" class="menu-icon">
</div>
</div>
<!-----account page---->
<div class="account-page">
<div class="container">
<div class="row">
<div class="col-2">
<img src="images/image1.png" width="100%">
</div>
<div class="col-2">
<div class="form-container">
<div class="form-btn">
<span>Sign Up</span>
<hr id="indicator">
</div>
<form id="Signform" action="signup.php" method="post">
<?php include('errors.php'); ?>
<input type="text" placeholder="Username" name="name">
<input type="text" placeholder="E-mail" name="email">
<input type="password" placeholder="Password" name="pwd">
<button type="submit" class="btn" name="signup">Sign Up</button>
</form>
</div>
</div>
</div>
</div>
</div>
<!-----footer---->
<div class="footer">
<div class="container">
<div class="row">
<div class="footer-col-1">
<h3>Download our app</h3>
<p>Download app for android and ios device</p>
</div>
<div class="footer-col-2">
<img src="images/logo-white.png">
<p>Our purpose is to sustainabily make the pleasure and benefits and lifestyle products accessible to the many.</p>
</div>
<div class="footer-col-3">
<h3>Useful Links</h3>
<ul>
<li>Coupons</li>
<li>Blog Post</li>
<li>Retuen Policy</li>
<li>Join Affiliate</li>
</ul>
</div>
<div class="footer-col-3">
<h3>Follow Us</h3>
<ul>
<li>Facebook</li>
<li>Twitter</li>
<li>Instagram</li>
<li>YouTube</li>
</ul>
</div>
</div>
<hr>
<p class="copyright">Copyright 2020 Urcart</p>
</div>
</div>
</body>
</html>