source: src/main/resources/templates/login.ftl@ 4d7e387

Last change on this file since 4d7e387 was 4d7e387, checked in by makyjovanovsky <mjovanovski04@…>, 18 months ago

commit 1

  • Property mode set to 100644
File size: 3.0 KB
Line 
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <title>Login Page</title>
6 <!-- Font Awesome -->
7 <link
8 href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
9 rel="stylesheet"
10 />
11 <!-- Google Fonts -->
12 <link
13 href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
14 rel="stylesheet"
15 />
16 <!-- MDB -->
17 <link
18 href="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/5.0.0/mdb.min.css"
19 rel="stylesheet"
20 />
21</head>
22<body>
23
24<!-- Section: Design Block -->
25<section class="text-center text-lg-start">
26 <style>
27 .cascading-right {
28 margin-right: -50px;
29 }
30
31 @media (max-width: 991.98px) {
32 .cascading-right {
33 margin-right: 0;
34 }
35 }
36 </style>
37
38 <!-- Jumbotron -->
39 <div class="container py-4">
40 <div class="row g-0 align-items-center">
41 <div class="col-lg-6 mb-5 mb-lg-0">
42 <div class="card cascading-right" style="
43 background: hsla(0, 0%, 100%, 0.55);
44 backdrop-filter: blur(30px);
45 ">
46 <div class="card-body p-5 shadow-5 text-center">
47 <h2 class="fw-bold mb-5">Login now</h2>
48 <form method="post" action="/login">
49
50 <div class="form-outline mb-4">
51 <input type="text" id="form3Example3" class="form-control" name="username"/>
52 <label class="form-label" for="form3Example3">Username</label>
53 </div>
54
55 <!-- Password input -->
56 <div class="form-outline mb-4">
57 <input type="password" id="form3Example4" class="form-control" name="password"/>
58 <label class="form-label" for="form3Example4">Password</label>
59 </div>
60
61 <div class="form-check d-flex justify-content-center mb-4">
62 <#if message??>
63 <p>${message}</p>
64 </#if>
65 </div>
66
67 <!-- Submit button -->
68 <button type="submit" class="btn btn-primary btn-block mb-4">
69 Login
70 </button>
71
72 </form>
73 </div>
74 </div>
75 </div>
76
77 <div class="col-lg-6 mb-5 mb-lg-10">
78 <img src="https://i.ibb.co/jk8FCT0/background.jpg" class="w-100 rounded-4 shadow-4"
79 alt="" />
80 </div>
81 </div>
82 </div>
83 <!-- Jumbotron -->
84</section>
85<!-- Section: Design Block -->
86
87
88
89<!-- MDB -->
90<script
91 type="text/javascript"
92 src="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/5.0.0/mdb.min.js"
93></script>
94</body>
95</html>
Note: See TracBrowser for help on using the repository browser.