-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.html
56 lines (53 loc) · 2.72 KB
/
user.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
<!doctype html>
<html lang="en">
<head>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<link rel="stylesheet" href="user.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="output.css">
</head>
<body>
<form class="needs-validation">
<h1 class="titlu">Sign up</h1>
<div class="form-group was-validated">
<label for="email" class="inp form-label">Username</label><br>
<input class='form-control' type="username" id="email" required>
</div>
<div class="form-group was-validated">
<label for="password" class="inp form-label">Email</label><br>
<input class='form-control' type="email" id="password" required>
</div>
<div class="form-group was-validated">
<label class="inp form-label">Phone number:</label><br>
<div class="input-group mb-3">
<span class="input-group-text">+38</span>
<input id='numb' type="number" class="form-control" aria-label="Amount (to the nearest dollar)" required>
</div>
</div>
<div class="form-group was-validated">
<label for="password" class="inp form-label">First name</label><br>
<input class='form-control' type="username" id="password" required>
</div>
<div class="form-group was-validated">
<label for="password" class="inp form-label">Last name</label><br>
<input class='form-control' type="username" id="password" required>
</div>
<div class="form-group was-validated">
<label for="password" class="inp form-label">Password</label><br>
<input class='form-control' type="password" id="password" required>
</div>
<div class="form-group was-validated">
<label for="password" class="inp form-label">Confirm password</label><br>
<input class='form-control' type="password" id="password" required>
</div><br>
<button id="sbt"><a href='home.html'>Submit</a></button>
</form>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-7VPbUDkoPSGFnVtYi0QogXtr74QeVeeIs99Qfg5YCF+TidwNdjvaKZX19NZ/e6oz" crossorigin="anonymous">
</script>
</body>
</html>