forked from juanbelieni/romme-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredefinir-senha.html
71 lines (60 loc) · 2.39 KB
/
redefinir-senha.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
71
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta tags -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Redefinir senha | ROMME_Net</title>
<!-- Bootstrap CSS -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU"
crossorigin="anonymous"
/>
<!-- Bootstrap icons -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
/>
<!-- Page CSS -->
<link href="/styles/login.css" rel="stylesheet" />
</head>
<body>
<img src="/imagens/icone.svg" alt="Logo da ROMME_Net" class="mx-auto d-block mb-5"/>
<div class="container shadow-lg p-3 mb-5 bg-body rounded vertical-center" id="login-box">
<h1 class="h3 mb-3 font-weight-normal fw-bold text-center">Redefinir Senha</h1>
<form>
<div class="mb-3">
<label for="InputPassword1" class="form-label">Digite sua nova senha</label>
<input type="password" class="form-control is-invalid" id="InputPassword1">
<div class="invalid-feedback">
Senha invalida.
</div>
<div id="passwordHelpBlock" class="form-text">
Sua senha deve ter de 8-20 caracteres.
</div>
<div>
</div>
</div>
<div class="mb-4">
<label for="InputPassword2" class="form-label">Repita sua nova senha</label>
<input type="password" class="form-control is-invalid" id="InputPassword2">
<div class="invalid-feedback">
As senhas não coincidem.
</div>
</div>
<div class="d-grid mx-auto mb-4">
<input type="submit" class="btn btn-primary" value="Enviar">
</div>
</form>
</div>
<!-- Bootstrap JS bundle -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ"
crossorigin="anonymous"
></script>
</body>
</html>