-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelete.ejs
27 lines (23 loc) · 968 Bytes
/
delete.ejs
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
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col">
<form action="/delete" method="post">
<h1 style="text-align: center;">Delete Student</h1>
<div class="input-group mb-3 b">
<div class="input-group-prepend ">
<span class="input-group-text" id="inputGroup-sizing-default">Roll no</span>
</div>
<input type="number" class="form-control" aria-label="Default" aria-describedby="inputGroup-sizing-default" name="rollno" max="199999999" min="100000000">
</div>
<div class="input-group mb-3 b">
<button class="btn btn-secondary text-nowrap c">Submit</button>
</form>
</div>
</div>
</div>
</body>