-
Notifications
You must be signed in to change notification settings - Fork 0
/
register.php
100 lines (87 loc) · 4.26 KB
/
register.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
<!DOCTYPE html>
<html lang="en">
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<head>
<title>Registration - Real Estate Management System</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.css" />
<link rel="stylesheet" href="assets/style.css" />
<script src="assets/jquery-1.9.1.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.js"></script>
<script src="assets/script.js"></script>
<!-- Owl stylesheet -->
<link rel="stylesheet" href="assets/owl-carousel/owl.carousel.css">
<link rel="stylesheet" href="assets/owl-carousel/owl.theme.css">
<script src="assets/owl-carousel/owl.carousel.js"></script>
<!-- Owl stylesheet -->
<!-- slitslider -->
<link rel="stylesheet" type="text/css" href="assets/slitslider/css/style.css" />
<link rel="stylesheet" type="text/css" href="assets/slitslider/css/custom.css" />
<script type="text/javascript" src="assets/slitslider/js/modernizr.custom.79639.js"></script>
<script type="text/javascript" src="assets/slitslider/js/jquery.ba-cond.min.js"></script>
<script type="text/javascript" src="assets/slitslider/js/jquery.slitslider.js"></script>
</head>
<body>
<?php include 'includes/header.php';?>
<!-- banner -->
<div class="inside-banner">
<div class="container">
<h2>Register</h2>
</div>
</div>
<!-- banner -->
<div class="container">
<div class="spacer">
<div class="row register">
<div class="col-lg-6 col-lg-offset-3 col-sm-6 col-sm-offset-3 col-xs-12 ">
<input type="text" class="form-control" placeholder="Full Name" name="form_name">
<input type="text" class="form-control" placeholder="Enter Email" name="form_email">
<input type="password" class="form-control" placeholder="Password" name="form_phone">
<input type="password" class="form-control" placeholder="Confirm Password" name="form_phone">
<textarea rows="6" class="form-control" placeholder="Address" name="form_message"></textarea>
<button type="submit" class="btn btn-success" name="Submit">Register</button>
</div>
</div>
</div>
</div>
<?php include 'includes/footer.php';?>
<!-- Modal -->
<div id="loginpop" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="row">
<div class="col-sm-6 login">
<h4>Login</h4>
<form class="" role="form">
<div class="form-group">
<label class="sr-only" for="exampleInputEmail2">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail2"
placeholder="Enter email">
</div>
<div class="form-group">
<label class="sr-only" for="exampleInputPassword2">Password</label>
<input type="password" class="form-control" id="exampleInputPassword2"
placeholder="Password">
</div>
<div class="checkbox">
<label>
<input type="checkbox"> Remember me
</label>
</div>
<button type="submit" class="btn btn-success">Sign in</button>
</form>
</div>
<div class="col-sm-6">
<h4>New User Sign Up</h4>
<p>Join today and get updated with all the properties deal happening around.</p>
<button type="submit" class="btn btn-info" onclick="window.location.href='register.html'">Join
Now</button>
</div>
</div>
</div>
</div>
</div>
<!-- /.modal -->
</body>
</html>