[feffc2f] | 1 | <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" lang="en">
|
---|
| 2 | <head>
|
---|
| 3 | <title>Login form</title>
|
---|
| 4 | <!-- <link href="/main.css" rel="stylesheet"/>-->
|
---|
| 5 | <title>Login</title>
|
---|
| 6 | <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"/>
|
---|
| 7 | <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
---|
| 8 | <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
---|
| 9 | <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
---|
| 10 | </head>
|
---|
| 11 | <body>
|
---|
| 12 | <form th:method="POST" th:action="@{/register}">
|
---|
| 13 | <div class="container">
|
---|
| 14 | <form class="form-signin mt-xl-5" method="post" action="/register">
|
---|
| 15 | <h2 class="form-signin-heading">Регистрирај се</h2>
|
---|
| 16 | <p>
|
---|
| 17 | <label for="name" class="sr-only">Име и презиме</label>
|
---|
| 18 | <input type="text" id="name" name="name" class="form-control" placeholder="Внеси го твоето име и презиме..." required="" autofocus=""/>
|
---|
| 19 | </p>
|
---|
| 20 | <p>
|
---|
| 21 | <label for="username" class="sr-only">Корисничко име</label>
|
---|
| 22 | <input type="text" id="username" name="username" class="form-control" placeholder="Внеси корисничко име..." required="" autofocus=""/>
|
---|
| 23 | </p>
|
---|
| 24 | <p>
|
---|
| 25 | <label for="email" class="sr-only">Email</label>
|
---|
| 26 | <input type="email" id="email" name="email" class="form-control" placeholder="info@xyz.com" required=""/>
|
---|
| 27 | </p>
|
---|
| 28 | <p>
|
---|
| 29 | <label for="number" class="sr-only">Телефонски број</label>
|
---|
| 30 | <input type="text" id="number" name="number" class="form-control" placeholder="+389 70 123 456" required=""/>
|
---|
| 31 | </p>
|
---|
| 32 | <p>
|
---|
| 33 | <label for="password" class="sr-only">Лозинка</label>
|
---|
| 34 | <input type="password" id="password" name="password" class="form-control" placeholder="*********" required=""/>
|
---|
| 35 | </p>
|
---|
| 36 | <p>
|
---|
| 37 | <label for="rpassword" class="sr-only">Потврди ја лозинката</label>
|
---|
| 38 | <input type="password" id="rpassword" name="rpassword" class="form-control" placeholder="*********" required=""/>
|
---|
| 39 | </p>
|
---|
| 40 | </form>
|
---|
| 41 | <button class="btn btn-lg btn-primary btn-block" type="submit">Регистрирај се</button>
|
---|
| 42 | </div>
|
---|
| 43 | </form>
|
---|
| 44 | <a href="/login" class="btn btn-block btn-light">Веќе имате сметка? Најавете се</a>
|
---|
| 45 | </body>
|
---|
| 46 | </html> |
---|