-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate.html
More file actions
78 lines (70 loc) · 2.19 KB
/
create.html
File metadata and controls
78 lines (70 loc) · 2.19 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
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Casa Fotbalului</title>
<meta name="autor" content="Sima Mihai">
<meta name="description" content="Creare user si parola">
<link rel="stylesheet" href="style_create.css" type="text/css">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<script type="text/javascript" src="create.js"></script>
</head>
<body>
<header>
<H1>CASA FOTBALULUI</H1>
<nav class="meniu" id="mymeniu">
<a href="Acasa.html" class="item">Acasa</a>
<a href="Noutati.html" class="item">Noutati</a>
<a href="Comunitate.html" class="item">Comunitate</a>
<a href="PlanViitor.html" class="item">Despre</a>
</nav>
</header>
<main>
<div class="principal"><h2>
Salut,microbistule! Pentru a debloca experienta full a site-ului, logheaza-te:
</h2>
</div>
<form id="loginForm">
<div class="date1">
<label for="nume">Username:</label>
<input
type="text"
id="username"
required
minlength="3"
maxlength="30"
size="40"
placeholder="Ex.mihaisima22"
/>
</div>
<div class="date">
<label for="parola">Introdu parola:</label>
<input
type="password"
id="parola"
required
minlength="3"
maxlength="30"
size="40"
placeholder="Parola"
/>
</div>
<div class="date2">
<label for="parola_conf">Parola recreata:</label>
<input
type="password"
id="parola1"
required
minlength="3"
maxlength="30"
size="40"
placeholder="Parola"
/>
</div>
<button type="submit">Login</button>
</form>
</div>
</main>
<footer></footer>
</body>