-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathajouter_un_organisme.html
77 lines (66 loc) · 2.14 KB
/
ajouter_un_organisme.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link rel="stylesheet" type="text/css" href="style_ajouterorganisme.css">
</head>
<body>
<h1 align="center"> Veuillez remplir ce formulaire pour créer un compte </h1>
<hr> <! - - permet trait horizontal - ->
<div>
<form>
<table border="0" width="auto" align="center" >
<tr>
<td width="auto"> <label> <strong> Réseau social: </strong> </label> </td> <td> <input type="text" name="t1"> </td>
</tr> <! - - td = colonne - ->
<tr>
<td width="auto"> <label> <strong>Etoile:</strong> </label> </td> <td> <input type="number" name="n1"> </td>
</tr>
<tr>
<td width="auto"> <label> <strong>Adresse:</strong> </label> </td> <td> <input type="text" name="t2"> </td>
</tr>
<tr>
<td width="auto"> <label> <strong>Email:</strong> </label> </td> <td> <input type="text" name="t3"> </td>
</tr>
<tr>
<td width="auto"> <label> <strong>Prix:</strong> </label> </td> <td> <input type="text" name="t3"> </td>
</tr>
<tr>
<td > <label> <strong>Animaux acceptes:</strong> </label> <input type="radio" name="r1"> </td>
<td > <label> <strong>Animaux non acceptes:</strong> </label> <input type="radio" name="r1"> </td>
</tr>
<tr>
<td> <label> <strong>Ville:</strong> </label> </td> <td>
<input type="text" name="t3"> </td>
</tr>
<tr>
<td> <label> <strong>Type:</strong> </label> </td>
<td>
<select>
<option> Hôtel </option>
<option> Mobil Home </option>
<option> Sport </option>
<option> Restaurant </option>
<option> Cinéma </option>
</select>
</td>
</tr>
<tr>
<td> <label> <strong>Identifiant:</strong> </label> </td>
<td> <input type="text" name="t3"></td>
</tr>
<tr>
<td> <label> <strong>Mot de passe:</strong></label> </td>
<td> <input type="password" name="t3"> </td>
</tr>
<tr>
<td> </td>
<td> <button> <strong> Enregistrer </strong> </button>
<button> <strong> Annuler </strong></button> </td>
</table>
</form>
</div>
</body>
</html>