-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest5.html
More file actions
57 lines (46 loc) · 1.31 KB
/
test5.html
File metadata and controls
57 lines (46 loc) · 1.31 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
<!DOCTYPE html>
<html>
<head> <meta charset="utf-8">
<title>Menu simple</title>
<link rel="stylesheet" href="test5.css" />
</head>
<body>
<div class="bg-image"></div>
<div class=" contenu">
<nav>
<ul class="nav">
<li><a href="#">About us </a></li>
<li><a href="#">Help</a></li>
<li><a href="#">contact us </a></li>
</ul>
</nav>
<br /><br />
<br /><br />
<br /><br />
<br /><br />
<br /><br />
<br /><br />
<br /><br />
<br /><br />
<br /><br />
<br /><br />
<br /><br />
<br /><br />
<form method="post">
<label for="text_input">E-mail </label>
<input type="text" pattern="^[a-z].*" name="text_input" autofocus />
<label for="password">Mot de passe</label>
<input
type="password"
name="password"
minlength="4"
maxlength="8"
pattern=".*[a-z]{1,}.*[A-Z]{1,}.*[0-9]{1,}.+"
/>
<div>
<button type="submit" style="margin-top: 5px">se connecter</button>
</div>
</form>
</div>
</body>
</html>