-
Notifications
You must be signed in to change notification settings - Fork 0
/
Add_Interes.html
58 lines (58 loc) · 1.58 KB
/
Add_Interes.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="css/bootstrap/bootstrap.css" rel="stylesheet"/>
<link href="css/style/style.css" type="text/css" rel="stylesheet"/>
<title>Add/Edit List of Interes</title>
</head>
<body class="other">
<header class="container bg-dark rounded text-white">
<div class="row">
<div class="col-8">
<h3>Add/Edit list of interes</h3>
</div>
<div class="col-2">
<label class="text-white"for="#">UserName</label>
</div>
<div class="col-2">
<button class="btn btn-danger">Logout</button>
</div>
</div>
</header>
<div class="container mt-3">
<div class="row">
<div class="col-6">
<div class="btn-group">
<a class="btn btn-dark" href="index.html" role="button">HomePage</a>
<a class="btn btn-dark" href="Add_Students.html" role="button">Add/Edit list of students</a>
<a class="btn btn-dark disabled" href="#" role="button">Add/Edit list of interes</a>
</div>
</div>
<div class="col-6">
</div>
</div>
<div class=" form-group row mt-5">
<div class="col-4">
</div>
<div class="col-4">
<input class="form-control" type="text" id="input-name" placeholder="Name interest">
</div>
</div>
<div class="col-4">
</div>
<div class="form-group row">
<div class="col-4">
</div>
<div class="col-4 text-center">
<button class="btn btn-outline-secondary text-white border-white">Save</button>
</div>
<div class="col-4">
</div>
</div>
</div>
<footer class="container bg-dark text-white rounded">
<p class="text-center p-1">© 2019 Copyright: Cebotari Marin</p>
</footer>
</body>
</html>