-
Notifications
You must be signed in to change notification settings - Fork 0
/
resister.php
63 lines (48 loc) · 1.77 KB
/
resister.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
<?php include "db.php"; ?>
<?php include "header.php"; ?>
<?php include "functions.php"; ?>
<body>
<?php creatUser(); ?>
<section class="login-section">
<div class="container">
<div class="row">
<div class="col-md-4 offset-md-4">
<div class="login-box">
<h2>Resister User</h2>
<form action="" method="POST">
<!-- Username field -->
<div class="form-group">
<label>Username</label>
<input type="text" name="username" class="form-control">
</div>
<!-- Password field -->
<div class="form-group">
<label>Password</label>
<input type="Password" name="password" class="form-control">
</div>
<!-- Password field -->
<div class="form-group">
<label>Email</label>
<input type="email" name="email" class="form-control">
</div>
<!-- Password field -->
<div class="form-group">
<label>Phone Number</label>
<input type="text" name="phone" class="form-control">
</div>
<!-- Password field -->
<div class="form-group">
<label>Address</label>
<input type="text" name="address" class="form-control">
</div>
<div class="form-group">
<input type="submit" name="resister" class="btn btn-primary">
</div>
</form>
</div>
</div>
</div>
</div>
</section>
</body>
<?php include "footer.php"; ?>