-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaddRdvWindow.html
39 lines (32 loc) · 1.17 KB
/
addRdvWindow.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title> Ajouter un rendez-vous </title>
<script type="text/javascript" src="./contents/jquery/jquery-3.4.1.min.js"></script>
<script src="./contents/bootstrap/js/bootstrap.min.js"></script>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="./contents/bootstrap//css/bootstrap.min.css" />
<link rel="stylesheet" href="./style.css" />
<style>
</style>
</head>
<body>
<div class="login-box">
<img src="./img/schedule.png" class="avatar">
<h1> Ajouter un rendez-vous </h1>
<form>
<div class="container">
<label>Date</label>
<input type="date" id="date_rdv" autofocus required>
<label>Heure</label>
<input type="time" id="time_rdv" autofocus required>
<label>Objet</label>
<input type="text" id="objet_rdv" autofocus>
</div>
<button type="submit" id="AddRDV"> Ajouter </button>
</form>
<script src="./addRdvRenderer.js">
</script>
</body>
</html>