-
Notifications
You must be signed in to change notification settings - Fork 0
/
create.php
42 lines (42 loc) · 1.59 KB
/
create.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Create Record</title>
<link rel="stylesheet" href="bootstrap.min.css">
<style>
.wrapper{
width: 600px;
margin: 0 auto;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<h2 class="mt-5">Create Record</h2>
<p>Please fill this form and submit to add student record to the database.</p>
<form action="insert.php" method="post">
<div class="form-group">
<label>Name</label>
<input type="text" name="name" class="form-control" placeholder="type ur name">
</div>
<div class="form-group">
<label>email</label>
<input type="email" name="email" class="form-control" placeholder="type ur email">
</div>
<div class="form-group">
<label>Number</label>
<input type="text" name="number" class="form-control" placeholder="type ur Number">
</div>
<input type="submit" class="btn btn-primary" value="Submit">
<a href="index.php" class="btn btn-secondary ml-2">Cancel</a>
</form>
</div>
</div>
</div>
</div>
</body>
</html>