-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.php
More file actions
57 lines (57 loc) · 1.96 KB
/
signup.php
File metadata and controls
57 lines (57 loc) · 1.96 KB
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
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<?php
include 'scripts_links.php';
?>
<title>Login</title>
</head>
<body>
<?php
include 'header_login.php';
?>
<div class="container">
<div class="row signup_row_style">
<div class="col-xs-4 col-xs-offset-4">
<div class="panel panel-default">
<div class="panel-heading text-center text-header">Sign Up</div>
<div class="panel-body">
<div class="container-fluid">
<div class="row">
<form action="/scripts/user_registration_script.php" method="post">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" name="name" id="name" placeholder="Email" class="form-control">
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" name="email" id="email" placeholder="Email" class="form-control">
</div>
<div class="form-group">
<label for="password">Password:</label>
<input type="password" name="password" id="password" placeholder="Password" class="form-control">
</div>
<div class="form-group">
<label for="phone">Phone:</label>
<input type="number" name="phone" id="phone" placeholder="Enter valid phone number (Example: 84555484555)" class="form-control">
</div>
<button type="submit" class="btn btn-primary btn-block">Submit</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php
include 'footer.php';
?>
</body>
</html>