-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddstudent.html
More file actions
42 lines (37 loc) · 1.38 KB
/
Copy pathaddstudent.html
File metadata and controls
42 lines (37 loc) · 1.38 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
{% extends 'base.html' %}
{% block title %}
Add Student
{% endblock %}
{% block body %}
<div class="container w-25">
<h3>Add Student</h3>
<form action="{% url 'add_confirm' %}" method="post">
{% csrf_token %}
<div class="mb-3">
<label for="name" class="form-label">Student Name</label>
<input type="text" class="form-control" name="sname">
</div>
<div class="mb-3">
<label for="roll-no" class="form-label">Roll Number</label>
<input type="text" class="form-control" name="roll-no" >
</div>
<div class="mb-3">
<label for="hindi" class="form-label">Hindi</label>
<input type="number" class="form-control" name="hindi">
</div>
<div class="mb-3">
<label for="english" class="form-label">English</label>
<input type="number" class="form-control" name="english">
</div>
<div class="mb-3">
<label for="maths" class="form-label">Maths</label>
<input type="number" class="form-control" name="maths">
</div>
<div class="mb-3">
<label for="science class=" form-label">Science</label>
<input type="number" class="form-control" name="science">
</div>
<input type="submit" class="form-control btn btn-success" value="Add">
</form>
</div>
{% endblock %}