-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsignUp.php
139 lines (132 loc) · 5.87 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
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
<!doctype html>
<html lang="en">
<head>
<!--character width -->
<meta charset="utf-8">
<!--page to fit screen at diff widths -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-compatible" content="ie=edge">
<!-- page title -->
<title>Sign Up</title>
<!-- stylesheet reference -->
<link href="main.css" rel="Stylesheet" type="text/css" />
<!-- icon -->
<link rel="icon" href="images/Logop2.jpg" type="image/x-icon">
<!-- social media icons -->
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
</head>
<body>
<div class="container">
<div class="all_nav">
<div class="bg-img">
<nav class="navbar">
<!-- side navigation bar -->
<a href="#" onclick="OSM()">
<svg class="svg" width="30" height="30">
<path id="sgv1" d="M0,5 30,5" stroke="#fff" stroke-width="5"/>
<path id="sgv2" d= "M0,14 30,14" stroke="#fff" stroke-width="5"/>
<path id="sgv3" d= "M0,23 30,23" stroke="#fff" stroke-width="5"/>
</svg>
</a>
<ul class="navbar-nav">
<li><a href="index.php">HOME</a></li>
<li><a href="order.php">ORDER</a></li>
<li><a href="contact.php">CONTACT</a></li>
<li><a href="about.php">ABOUT</a></li>
<li><a class="active" href="#">SIGN IN</a></li>
<li><a href="ourLocation.php">FIND US</a></li>
</ul>
</nav>
</div>
</div>
<div id="side-menu" class="side-nav">
<a href="#" class="btn-close" onclick="CSM()"><img src="icons/bak.png" alt="back icon" /></a>
<!-- Side navigation bar links -->
<ul>
<a href="index.php">HOME</a>
<a href="order.php">ORDER</a>
<a href="contact.php">CONTACT</a>
<a href="about.php">ABOUT</a>
<a class="active" href="#">ACCOUNT</a>
<li><a href="ourLocation.php">LOCATION</a></li>
</ul>
</div>
<div class="main">
<!--This code is complete spagetti but the CSS for forms is set as a global so this is the only way I can change it... (please look in to)-->
<div class="container">
</div>
<br />
<br />
<br />
<br />
<h4> SIGN UP </h4>
<br />
<br />
<p>Fill out the details below to make an account with us </p>
<div class="container">
<form method="post" action="insertAccount.php">
<input type="text" placeholder="Full name*" name="txtName" />
<br />
<input type="text" placeholder="Email*" name="txtEmail" />
<br />
<input type="password" placeholder="Password*" name="txtPass">
<br />
<br />
<br />
<button name = "subUser" type="submit" class="registerbtn">JOIN NOW</button>
<br />
<br />
<br />
<br />
</form>
<!-- page footer !-->
<footer class="footer">
<!-- javascript link !-->
<script src="main.js"></script>
<hr size="1" width="100%" color="white">
<div class="fcontainer"><!-- the whole footer section !-->
<div class="row">
<div class="footer-col">
<ul> <!-- navbar links in the footer section !-->
<li><a href="#">HOME</a></li>
<li><a href="order.php">ORDER</a></li>
<li><a href="contact.php">CONTACT</a></li>
<li><a href="about.php">ABOUT</a></li>
<li><a href="signIn.php">SIGN UP TODAY</a></li>
</ul>
</div>
<div class="footer-col">
<ul>
<!-- other links !-->
<li><a href="#">FIND PIXEL</a></li>
<li><a href="#">CAREERS</a></li>
<li><a href="#">HELP</a></li>
<li><a href="#">ADS AND COOKIES</a></li>
</ul>
</div>
<div class="footer-col">
<ul> <!-- other links !-->
<li><a href="#">PRIVACY</a></li>
<li><a href="#">POLICIES</a></li>
<li><a href="#">TERMS AND CONDITIONS</a></li>
</ul>
</div>
<div class="footer-col">
<h3>FOLLOW US</h3>
<div class="socialM-links"> <!-- social media links !-->
<a href="https://facebook.com"><em class="fab fa-facebook-f"></em></a>
<a href="https://twitter.com"><em class="fab fa-twitter"></em></a>
<a href="https://whatsapp.com"><em class="fab fa-whatsapp"></em></a>
<a href="https://microsoft.com"><em class="fab fa-microsoft"></em></a>
</div>
</div>
</div>
</div>
<hr/>
<span class="pix"> <!-- name declaration !-->
<P>© PIXELCHILLS. All Rights Reserved.</P>
</span>
</footer>
</div>
</body>
</html>