-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.php
69 lines (67 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Sign up</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="CSS/footer-style.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
<link rel="stylesheet" href="CSS/login.css" />
<link rel="stylesheet" href="CSS/header-style.css">
</head>
<body>
<?php include 'includes/header.php'; ?>
<div class="body">
<div class="form-container">
<div class="login-form">
<form action="validation/signup_validation.php" method="post">
<h1>Signup</h1>
<hr />
<p>Artisan Elegance, Shipped to You.</p>
<label for="email">Email</label>
<input
id="email"
name="email"
type="email"
placeholder="[email protected]"
/>
<label for="password">Password</label>
<input
id="password"
name="password"
type="password"
placeholder="Enter your password!"
/>
<label for="address">Address</label>
<input
id="address"
name="address"
type="text"
placeholder="Enter your adress"
/>
<label for="phone">Phone</label>
<input
id="phone"
name="phone"
type="tel"
placeholder="Enter your phone number"
/>
<button class="submit">Submit</button>
<p class="forgot-pass">
<a href="login.php">Already have an account?</a>
</p>
</form>
</div>
<div class="pic">
<img src="images/ph.png" />
</div>
</div>
</div>
<?php include 'includes/footer.php'; ?>
</body>
</html>