1 | <!DOCTYPE html>
|
---|
2 | <html lang="en">
|
---|
3 | <head>
|
---|
4 | <title>Cimeri</title>
|
---|
5 | <meta property="og:title" content="Cimeri" />
|
---|
6 | <meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
---|
7 | <meta charset="utf-8" />
|
---|
8 | <meta property="twitter:card" content="summary_large_image" />
|
---|
9 |
|
---|
10 | <style data-tag="reset-style-sheet">
|
---|
11 | html { line-height: 1.15;}body { margin: 0;}* { box-sizing: border-box; border-width: 0; border-style: solid;}p,li,ul,pre,div,h1,h2,h3,h4,h5,h6,figure,blockquote,figcaption { margin: 0; padding: 0;}button { background-color: transparent;}button,input,optgroup,select,textarea { font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0;}button,select { text-transform: none;}button,[type="button"],[type="reset"],[type="submit"] { -webkit-appearance: button;}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner { border-style: none; padding: 0;}button:-moz-focus,[type="button"]:-moz-focus,[type="reset"]:-moz-focus,[type="submit"]:-moz-focus { outline: 1px dotted ButtonText;}a { color: inherit; text-decoration: inherit;}input { padding: 2px 4px;}img { display: block;}html { scroll-behavior: smooth }
|
---|
12 | </style>
|
---|
13 | <style data-tag="default-style-sheet">
|
---|
14 | html {
|
---|
15 | font-family: Inter;
|
---|
16 | font-size: 16px;
|
---|
17 | }
|
---|
18 |
|
---|
19 | body {
|
---|
20 | font-weight: 400;
|
---|
21 | font-style:normal;
|
---|
22 | text-decoration: none;
|
---|
23 | text-transform: none;
|
---|
24 | letter-spacing: normal;
|
---|
25 | line-height: 1.15;
|
---|
26 | color: var(--dl-color-gray-black);
|
---|
27 | background-color: var(--dl-color-gray-white);
|
---|
28 |
|
---|
29 | }
|
---|
30 | </style>
|
---|
31 | <link
|
---|
32 | rel="stylesheet"
|
---|
33 | href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"
|
---|
34 | data-tag="font"
|
---|
35 | />
|
---|
36 | <link rel="stylesheet" href="/registerowner/style.css" />
|
---|
37 | </head>
|
---|
38 | <body>
|
---|
39 | <div>
|
---|
40 | <link href="/registerowner/registerowner.css" rel="stylesheet" />
|
---|
41 |
|
---|
42 | <div class="registerowner-container">
|
---|
43 | <span class="registerowner-text">
|
---|
44 | <span class="registerowner-text1">ENTER REGISTER INFO:</span>
|
---|
45 | <br />
|
---|
46 | </span>
|
---|
47 |
|
---|
48 | <div>
|
---|
49 | <form th:method="post" th:action="@{/registerowner}">
|
---|
50 | <div class="registerowner-container01">
|
---|
51 | <div class="registerowner-container02">
|
---|
52 | <span>Name</span>
|
---|
53 | <input
|
---|
54 | type="text"
|
---|
55 | placeholder="Name"
|
---|
56 | class="registerowner-textinput input"
|
---|
57 | id="ime"
|
---|
58 | name="ime"
|
---|
59 | />
|
---|
60 | </div>
|
---|
61 | <div class="registerowner-container03">
|
---|
62 | <span>Surname</span>
|
---|
63 | <input
|
---|
64 | type="text"
|
---|
65 | placeholder="Surname"
|
---|
66 | class="registerowner-textinput1 input"
|
---|
67 | id="prezime"
|
---|
68 | name="prezime"
|
---|
69 | />
|
---|
70 | </div>
|
---|
71 | </div>
|
---|
72 | <div class="registerowner-container04">
|
---|
73 | <div class="registerowner-container05">
|
---|
74 | <span>Password</span>
|
---|
75 | <input
|
---|
76 | type="password"
|
---|
77 | placeholder="Password"
|
---|
78 | class="registerowner-textinput2 input"
|
---|
79 | id="password"
|
---|
80 | name="password"
|
---|
81 | />
|
---|
82 | </div>
|
---|
83 | <div class="registerowner-container06">
|
---|
84 | <span>Username</span>
|
---|
85 | <input
|
---|
86 | type="text"
|
---|
87 | placeholder="Username"
|
---|
88 | class="registerowner-textinput3 input"
|
---|
89 | id="username"
|
---|
90 | name="username"
|
---|
91 | />
|
---|
92 | </div>
|
---|
93 | </div>
|
---|
94 | <div class="registerowner-container07">
|
---|
95 | <div class="registerowner-container08">
|
---|
96 | <span>Phone Number</span>
|
---|
97 | <input
|
---|
98 | type="text"
|
---|
99 | placeholder="Phone Number"
|
---|
100 | class="registerowner-textinput4 input"
|
---|
101 | id="phone_number"
|
---|
102 | name="phone_number"
|
---|
103 | />
|
---|
104 | </div>
|
---|
105 | <div class="registerowner-container09">
|
---|
106 | <span>Email Adress</span>
|
---|
107 | <input
|
---|
108 | type="text"
|
---|
109 | placeholder="Email Adress"
|
---|
110 | class="registerowner-textinput5 input"
|
---|
111 | id="email_address"
|
---|
112 | name="email_address"
|
---|
113 | />
|
---|
114 | </div>
|
---|
115 | </div>
|
---|
116 | <button class="registerowner-button button">SUBMIT</button>
|
---|
117 | </div>
|
---|
118 | </form>
|
---|
119 | <th:block th:if="${error}==true">
|
---|
120 | <span class="error" th:text="${errorMsg}"></span>
|
---|
121 | </th:block>
|
---|
122 | </div>
|
---|
123 | </div>
|
---|
124 | </body>
|
---|
125 | </html>
|
---|