-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.php
99 lines (88 loc) · 4.02 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
<?php require "config/config.php"; ?>
<!DOCTYPE html>
<html lang="zxx">
<head>
<title>Mukul-Profile/Signup</title>
<meta charset="UTF-8">
<meta name="description" content="Portfolio about Mukul">
<link rel="shortcut icon" type="image/png" href="img/M.jfif">
<meta name="keywords" content="photo, html">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Stylesheets -->
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<link rel="stylesheet" href="css/font-awesome.min.css"/>
<link rel="stylesheet" href="css/themify-icons.css"/>
<link rel="stylesheet" href="css/accordion.css"/>
<link rel="stylesheet" href="css/owl.carousel.min.css"/>
<!-- Main Stylesheets -->
<link rel="stylesheet" href="css/style.css"/>
<!-- [if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif] -->
</head>
<body>
<!-- Page Preloder -->
<div id="preloder">
<div class="loader"></div>
</div>
<!-- Offcanvas Menu Section -->
<?php include "nav.php"; ?>
<!-- Offcanvas Menu Section end -->
<div class="container">
<div class="blog-main">
<div class="blog-post">
<div class="blog-post-img">
<img src="img/signup.jpg" alt="">
</div>
<div class="blog-post-info">
<h1 class="blog-post-title"> Sign-up </h1>
<p class="blog-post-text"> we don't share password with anyone</p>
<!-- <a href="#" class="blog-post-cta">Read more</a> -->
<form class="user" name="signup" id="signup" action="config/submit.php" method="POST">
<div class="form-group">
<input type="text" class="form-control form-control-user" name="fullname" id="fullname" aria-describedby="emailHelp" placeholder="Full-Name">
</div>
<div class="form-group">
<input type="text" class="form-control form-control-user" name="username" id="username" aria-describedby="emailHelp" placeholder="User-Name">
</div>
<div class="form-group">
<input type="email" class="form-control form-control-user" id="email" name="email" aria-describedby="emailHelp" placeholder="Enter Email Address">
</div>
<div class="form-group">
<input type="tel" class="form-control form-control-user" id="phone" name="phone" aria-describedby="emailHelp" placeholder="Enter Phone Number" required>
</div>
<div class="form-group">
<input type="password" class="form-control form-control-user" id="password" name="password" placeholder="Password">
</div>
<button name="submit" id="submit" type="submit" value="submit" class="btn btn-user btn-block">REGISTER !</button>
<button name="reset" id="reset" type="reset" value="reset" class="btn btn-user btn-block">RESET !</button>
</form>
<br>
<div class="text-center">
<a class="small" href="forgot-password.php">Forgot Password?</a>
</div>
<div class="text-center">
<a class="small" href="login.php">Already have an account? Login!</a>
</div>
<br>
<div class="text-center">
<a class="small" href="index.php">
<button name="btn-login" class="btn btn-user">Home Page </button>
</a>
</div>
</div>
</div>
</div>
<!--====== Javascripts & Jquery ======-->
<script src="js/vendor/jquery-3.2.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/imagesloaded.pkgd.min.js"></script>
<script src="js/isotope.pkgd.min.js"></script>
<script src="js/jquery.nicescroll.min.js"></script>
<script src="js/circle-progress.min.js"></script>
<script src="js/pana-accordion.js"></script>
<script src="js/main.js"></script>
</body>
</html>