1 | <!DOCTYPE html >
|
---|
2 | <html lang="en" xmlns:th="http://www.thymeleaf.org">
|
---|
3 | <head>
|
---|
4 | <meta charset="UTF-8">
|
---|
5 | <title>Заборавена лозинка</title>
|
---|
6 | <link rel="stylesheet" href="/css/style.css">
|
---|
7 | <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
|
---|
8 | rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
|
---|
9 | crossorigin="anonymous">
|
---|
10 | <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
|
---|
11 | <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
|
---|
12 | integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
|
---|
13 | crossorigin="anonymous"></script>
|
---|
14 | <link rel="stylesheet"
|
---|
15 | href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.15.4/css/fontawesome.min.css">
|
---|
16 | <style>
|
---|
17 | * {
|
---|
18 | box-sizing: border-box;
|
---|
19 | }
|
---|
20 |
|
---|
21 | .no-gutters {
|
---|
22 | background: floralwhite;
|
---|
23 | border-radius: 5px;
|
---|
24 | box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
|
---|
25 | }
|
---|
26 |
|
---|
27 | body {
|
---|
28 | background: linear-gradient(to right, #93A3CE, #1C294E);
|
---|
29 | color: #000029;
|
---|
30 | }
|
---|
31 |
|
---|
32 | img {
|
---|
33 | width: 100%;
|
---|
34 | height: 100%;
|
---|
35 | object-fit: fill;
|
---|
36 | position: relative;
|
---|
37 | bottom: -30px;
|
---|
38 | }
|
---|
39 | </style>
|
---|
40 | </head>
|
---|
41 | <body>
|
---|
42 | <section class="Form my-4 mx-5">
|
---|
43 | <div class="container">
|
---|
44 | <div class="row no-gutters">
|
---|
45 | <div class="col-lg-3"></div>
|
---|
46 | <div class="col-lg-6">
|
---|
47 | <div style="height: 50px"></div>
|
---|
48 | <h3 class="text-center" id="title">
|
---|
49 | Ја заборавивте лозинката? Внесете го Вашиот e-mail.
|
---|
50 | </h3>
|
---|
51 | <form method="POST" action="/home/forgotPassword" enctype="multipart/form-data">
|
---|
52 | <div class="row text-center">
|
---|
53 | <input type="text" name="email" placeholder="E-mail" class="form-control"/><br/><br/>
|
---|
54 | </div>
|
---|
55 | <div class="row pb-5">
|
---|
56 | <input type="submit" value="Испрати e-mail за ресетирање на лозинка" class="btn1 mt-3"/>
|
---|
57 | </div>
|
---|
58 | </form>
|
---|
59 | </div>
|
---|
60 | <div class="col-lg-3"></div>
|
---|
61 | </div>
|
---|
62 | <div style="height: 30px;"></div>
|
---|
63 | </div>
|
---|
64 | </section>
|
---|
65 | <img src="/img/wavebook.png" alt="Wave" class="bottom-img" style="position: relative; bottom: -60px;">
|
---|
66 | </body>
|
---|
67 | </html>
|
---|