1 | <!DOCTYPE html>
|
---|
2 | <html lang="en">
|
---|
3 | <head>
|
---|
4 | <meta charset="UTF-8">
|
---|
5 | <title>Register</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 style="background-color: #226781 ">
|
---|
12 | <h1 style="padding-left: 580px;padding-top: 50px;" >Регистрирај се</h1>
|
---|
13 | <div class="container">
|
---|
14 | <h1 th:if="${hasError}" th:text="${error}" th:href="@{'/register'}"></h1>
|
---|
15 | </div>
|
---|
16 | <div class="container" style="margin-top: -100px;max-width: 800px">
|
---|
17 | <form class="form-signin mt-xl-5" method="post" action="/register" style="padding-top: 150px">
|
---|
18 | <h2 class="form-signin-heading">Register</h2>
|
---|
19 | <p>
|
---|
20 | <label for="korisnicko_ime" class="sr-only">Корисничко име</label>
|
---|
21 | <input type="text" id="korisnicko_ime" name="korisnicko_ime" class="form-control" placeholder="Username" required=""
|
---|
22 | autofocus="">
|
---|
23 | </p>
|
---|
24 | <p>
|
---|
25 | <label for="lozinka" class="sr-only">Лозинка</label>
|
---|
26 | <input type="password" id="lozinka" name="lozinka" class="form-control" placeholder="Password"
|
---|
27 | required="">
|
---|
28 | </p>
|
---|
29 | <p>
|
---|
30 | <label for="email" class="sr-only">E-пошта</label>
|
---|
31 | <input type="text" id="email" name="email" class="form-control" placeholder="blabla@yahoo.com" required="" autofocus="">
|
---|
32 |
|
---|
33 | <div class="form-check ">
|
---|
34 | <input class="form-check-input" name="role" type="radio" id="ROLES_VRABOTEN" value="ROLES_VRABOTEN">
|
---|
35 | <label class="form-check-label" for="ROLES_VRABOTEN"><b>VRABOTEN</b></label>
|
---|
36 | </div>
|
---|
37 | <div class="form-check ">
|
---|
38 | <input class="form-check-input" name="role" type="radio" id="ROLES_DOSTAVUVAC" value="ROLES_DOSTAVUVAC">
|
---|
39 | <label class="form-check-label" for="ROLES_DOSTAVUVAC"><b>DOSTAVUVAC</b></label>
|
---|
40 | </div>
|
---|
41 | <div class="form-check ">
|
---|
42 | <input class="form-check-input" name="role" type="radio" id="ROLES_KUPUVAC" value="ROLES_KUPUVAC">
|
---|
43 | <label class="form-check-label" for="ROLES_KUPUVAC"><b>KUPUVAC</b></label>
|
---|
44 | </div>
|
---|
45 | </p>
|
---|
46 | <button class="btn btn-lg btn-primary btn-block" type="submit">Регистрирај се</button>
|
---|
47 | </form>
|
---|
48 | <a href="/login" class="btn btn-block btn-light">Веќе имаш профил?Најави се овде</a>
|
---|
49 | </div>
|
---|
50 |
|
---|
51 | </body>
|
---|
52 |
|
---|
53 | </html> |
---|