forked from LucasDelvallet/MaquetteGL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathajouterMoyenPaiementModif.html
More file actions
72 lines (66 loc) · 2.03 KB
/
ajouterMoyenPaiementModif.html
File metadata and controls
72 lines (66 loc) · 2.03 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
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
<!DOCTYPE html>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<html>
<head>
<title>Club A</title>
<link rel="stylesheet" type="text/css" href="Style.css">
</head>
<body>
<div id="Titre">
<h1>Bienvenue sur le Club A !</h1>
</div>
<div id="connexion">
<a href="connexion.html">Se déconnecter</a>
<a href="monCompte.html">Mon compte</a>
</div>
<div id="divMenu">
<ul id="menu">
<li><a href="accueil.html">Accueil</a></li>
<li><a href="news.html">News</a></li>
<li><a href="seances.html">Calendrier</a></li>
<li><a href="planifierMembre.html">Planifier une séance (membre)</a></li>
<li><a href="planifierSecretaire.html">Planifier une séance (secrétaire)</a></li>
<li><a href="validerSeanceAnimateur.html">Valider une séance (animateur)</a></li>
<li><a href="organiserEvenement.html">Organiser un évènement</a></li>
<li><a href="streaming.html">Streaming</a></li>
<li><a href="archive.html">Archives</a></li>
<li><a href="bai.html">Boite à idées</a></li>
<li><a href="scores.html">Scores/Classements</a></li>
<li><a href="dons.html">Dons</a></li>
<li><a href="sponsor.html">Devenez Sponsor !</a></li>
</ul>
</div>
<div id="main">
Type du moyen de paiement :
<br/>
<img src="images/VPM_modif.jpg" width="300" height="62">
<br/>
<br/>
Titulaire du compte : <INPUT type="text" name="nom" value="Bobby Lenul" size="11">
<br/>
<br/>
N° de carte <INPUT type="text" name="numCarte" value="5684*******65" size="20">
<br/>
<br/>
Expire fin :
<select>
<option>01-Janvier</option>
<option selected>02-Février</option>
<option>03-Mars</option>
<option>...</option>
</select>
/ <select>
<option>2018</option>
<option>2017</option>
<option>2016</option>
<option selected>2015</option>
<option>...</option>
</select>
<br/>
<br/>
<input type="checkbox" name="checkbox" checked> <FONT color="grey">se souvenir</FONT><br>
<br/>
<button>Valider</button>
</div>
</body>
</html>