-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform_classpr.html
129 lines (126 loc) · 5.14 KB
/
form_classpr.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>LinkedOut</title>
<link rel="stylesheet" href="Test FormEtdt.css">
<link rel="icon" type="image" href="favicon.png">
<link rel="stylesheet" href="./assets/vendors/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="./assets/vendors/fontawesome/css/all.min.css">
<script src="https://kit.fontawesome.com/a03e1e1400.js" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css">
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
</head>
<body>
<header>
<nav>
<div class="nav">
<div class="icone">
<i class="fa-solid fa-business-time"></i>
</div>
<div class="label">
<a href="menu_admin.html">Menu</a>
</div>
<div class="manage_firm">
<a href="creation_entreprise.html">Manage Firm</a>
</div>
<div class="manage_offers">
<a href="form_offers.html">Manage offers</a>
</div>
<div class="manage_tutors">
<a href="form_tutors.html">Manage tutors</a>
</div>
<div class="manage_president">
<a href="form_classpr.html">Manage class presidents</a>
</div>
<div class="manage_student">
<a href="Test Formulaire Etudiant.html">Manage Student</a>
</div>
</div>
</nav>
</header>
<!--begin sign on form-->
<main class="form-signin">
<form>
<h1 class="h3 mb-3 fw-normal">Manage class presidents</h1>
<div class="form-floating">
<p><label for="floatingInput">Name</label></p>
<input type="text" class="form-control" id="floatingInput" placeholder="Name">
</div>
<div class="form-floating">
<label for="floatingInput">Surname</label>
<input type="text" class="form-control" id="floatingInput" placeholder="Surname">
</div>
<div class="form-floating">
<label for="floatingInput">Campus</label>
<input type="text" class="form-control" id="floatingInput" placeholder="Campus">
</div>
<div class="form-floating">
<label for="floatingInput">Permissions</label>
<input type="text" class="form-control" id="floatingInput" placeholder="Permissions">
</div>
<div class="action">
<select>
<option>Add</option>
<option>Modify</option>
<option>Delete</option>
</select>
<div class="action">
<div class="add">
<input action='Add_firm' class="w-100 btn btn-lg btn-primary" type="submit">
</div>
</div>
</div>
</form>
</main>
<!--begin footer-->
<div class="footer-clean">
<footer>
<div class="container">
<div class="row justify-content-center">
<div class="col-sm-4 col-md-3 item">
<h3>For Job Seekers</h3>
<ul>
<li><a href="#">Browse Jobs</a></li>
<li><a href="#">Salary Tools</a></li>
<li><a href="#">Career Advices</a></li>
</ul>
</div>
<div class="col-sm-4 col-md-3 item">
<h3>For Employees</h3>
<ul>
<li><a href="#">Products</a></li>
<li><a href="#">Solutions</a></li>
<li><a href="#">#</a></li>
</ul>
</div>
<div class="col-sm-4 col-md-3 item">
<h3>Helpful Ressources</h3>
<ul>
<li><a href="#">About LinkedOut</a></li>
<li><a href="#">Work for LinkedOut</a></li>
<li><a href="#">Terms of use</a></li>
</ul>
</div>
<div class="col-lg-3 item social"><a href="#"><i class="fa-brands fa-facebook-f"></i></i></a><a href="#"><i class="fa-brands fa-twitter"></i></i></a><a href="#"><i class="fa-brands fa-snapchat"></i></a><a href="#"><i class="fa-brands fa-instagram"></i></a>
<p class="copyright">LinkedOut © 2022</p>
</div>
</div>
</div>
</footer>
</div>
</body>