-
Notifications
You must be signed in to change notification settings - Fork 1
/
registration.php
26 lines (24 loc) · 1.1 KB
/
registration.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
<?php include("header.php");?>
<?php include("dbcon.php");?>
<div class="col-xl-5 col-lg-6 col-md-8 col-sm-10 mx-auto form p-4">
<h1 class="text-center">
Registration to our portal
</h1>
<form method="POST" action="./regi_task.php">
<div class="mb-3 ">
<label for="fname" class="form-label">Name</label>
<input type="text" class="form-control" name="fname" id="exampleInputText1">
</div>
<div class="mb-3 ">
<label for="uname" class="form-label">Username</label>
<input type="text" class="form-control" name="uname" id="exampleInputText1">
</div>
<div class="mb-3">
<label for="password" class="form-label">Password</label>
<input type="password" class="form-control" name="password" id="exampleInputPassword1">
</div>
<input type="hidden" name="action" value="add">
<button type="submit" class="btn btn-primary">Sign UP</button>
</form>
</div>
<?php include("footer.php"); ?>