-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.php
56 lines (43 loc) · 2 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
<?php
include('registration.php'); // Includes Registration script
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=1,initial-scale=1,user-scalable=1" />
<title>Insert title here</title>
<link href="http://fonts.googleapis.com/css?family=Lato:100italic,100,300italic,300,400italic,400,700italic,700,900italic,900" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="assets/bootstrap/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="assets/css/styles.css" />
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[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>
<section class="container">
<section class="login-form">
<form method="post" action="" role="login">
<section class="form-outer">
<h2>Sign up for Ando</h2>
<input type="text" name="username" placeholder="Username" required class="form-control input-lg" />
<input type="password" name="password" placeholder="Password" required class="form-control input-lg" />
<input type="password" name="password1" placeholder="Confirm Password" required class="form-control input-lg" />
<button type="submit" name="signup" class="btn btn-lg btn-block">Register</button>
<span><?php echo $errorss; ?></span>
<span><?php echo $error; ?></span>
</section>
<div class="form-outer">
<a href="index.php">Click to log in!</a>
</div>
</form>
<div class="form-links">
</div>
</section>
</section>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
</body>
</html>