-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMonCompte_connexion.html
More file actions
38 lines (29 loc) · 1.09 KB
/
Copy pathMonCompte_connexion.html
File metadata and controls
38 lines (29 loc) · 1.09 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
<html>
<head>
<meta charset="utf-8">
<title>Mon Compte</title>
<link rel="stylesheet" href="./CSS/style_connexion.css">
</head>
<body>
<div id="conteneur">
<div id="intro">
<h1>Connexion / Inscription</h1>
</div>
<div id="connexion">
<form id="form_connexion">
<input class="col" id="pseudo" type="text" placeholder="Pseudo" required><br/>
<input class="col" id="mdp" type="password" placeholder="Mot de passe" required><br/>
<input id="btn_connexion" type="submit" value="SE CONNECTER" onclick="connexion()">
<p>- ou -</p>
<input type=button id="btn_inscription" onclick="window.location.href='monCompte_inscription.html';" value="S'INSCRIRE" />
</form>
</div>
</div>
</body>
<script>
function connexion(){
var prenom = document.getElementsByName("pseudo");
var mdp = document.getElementsByName("mdp");
}
</script>
</html>