-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
70 lines (69 loc) · 2.38 KB
/
signup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Thomas Bernard-St-Hilaire">
<title>Forum UQO</title>
<link rel="stylesheet" href="./css/styles.css" type="text/css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto"
/>
</head>
<body>
<header>
<img
src="img/uqo_logo.png"
alt="Logo
de UQO Forum absent"
id="logo"
/>
Forum
<section title="menu">
<nav id="topbar">
<a href="index.html" class="active">Accueil</a>
<a href="signin.html">Se connecter</a>
<a href="signup.html">S'inscrire</a>
<button>Se déconnecter</button>
</nav>
</section>
</header>
<main>
<section style="flex: auto">
<div style="text-align: center">
<h3>Inscription</h3>
<form>
<label for="username">Nom d'utilisateur :</label> <br />
<input type="text" id="input-username" /> <br />
<label for="password">Mot de passe :</label> <br />
<input type="password" id="input-password" /> <br />
<label for="password-confirm">Confirmer mot de passe :</label>
<br />
<input type="password" id="input-password-confirm" /> <br />
<label>Champ d'études :</label> <br />
<select name="field" id="field">
<option value="cs">Baccalauréat en Informatique</option>
<option value="cybersec">Certificat en Cybersécurité</option>
<option value="teacher">Baccalauréat en Enseignement</option>
</select>
<br />
<label>Photo de profil :</label><br />
<select name="pfp" id="select-pfp">
<option value="pfp1">Photo #1</option>
<option value="pfp2">Photo #2</option>
<option value="pfp3">Photo #3</option></select
><br />
<br />
<input type="submit" value="Soumettre" />
</form>
</div>
</section>
</main>
<footer>
<b>Forum UQO </b> <a href="mailto: [email protected]">Contact </a>
<i>Tout droits réservés 2023</i>
</footer>
</body>
</html>