-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.php
83 lines (64 loc) · 2.94 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
<?php
require 'includes/common.php';
if (isset($_SESSION['email']))
{
header('location: products.php'); }
?>
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>LIFESTYLE STORE|SIGN UP</title>
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
<script src="bootstrap/js/jquery-3.2.1.min.js" type="text/javascript"></script>
<script src="bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<?php
require 'includes/header.php';
?>
<div class="container">
<div class="row">
<div class="col-xs-6">
<h2>SIGN UP</h2>
<form method="post" action="signup_script.php">
<div class="form-group">
<input type="text" class="form-control" name="name" placeholder="Name">
</div>
<div class="form-group">
<input type="email" class="form-control" name="email" placeholder="Email">
</div>
<div class="form-group">
<input type="password" class="form-control" name="password" placeholder="Password">
</div>
<div class="form-group">
<input type="text" class="form-control" name="contact" placeholder="Contact">
</div>
<div class="form-group">
<input type="text" class="form-control" name="city" placeholder="City">
</div>
<div class="form-group">
<input type="text" class="form-control" name="address" placeholder="Address">
</div>
<button type="submit" class="btn btn-primary">Sign Up</button>
</form>
</div>
</div>
</div>
<footer id="footer1">
<div class="container">
<center>
Copyright © Lifestyle Store. All Rights
Reserved | Contact Us: +91 90000 00000
</center>
</div>
</footer>
</body>
</html>