-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign_up.html
63 lines (63 loc) · 2.92 KB
/
sign_up.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Daljinac/registracija</title>
<!-- Autor: Teodora Nedeljković -->
<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">
<link rel='stylesheet' href='style.css'>
<script src="myscripts.js"></script>
</head>
<body>
<div class='container'>
<div class='row'>
<div class='col-sm-12 firstRow'>
<div class='col-sm-1 firstRow'>
<!--<button type="button" class="btn btn-info dugme"><a class='link2' href='index.html'>Naslovna strana</a></button>-->
<a class="btn btn-primary dugme" href="index.html" role="button">Naslovna strana</a>
</div>
</div>
</div>
<div class='row'>
<div class='col-sm-6'>
<img src="assets/beba.jpg" alt="ljudici" width='100%' height='100%'>
</div>
<div class='col-sm-6 text-center'>
<h2 class='naslovi'>Registracija</h2>
<br/>
<form>
<table class='table'>
<tr>
<td> korisničko ime </td>
<td> <input type= 'text'> </td>
</tr>
<tr>
<td> e-mail </td>
<td> <input type= 'text'> </td>
</tr>
<tr>
<td> lozinka </td>
<td> <input type='text'> </td>
</tr>
<tr>
<td> ponovite lozinku </td>
<td> <input type='text'> </td>
</tr>
<tr>
<td colspan="2"> <input type='checkbox'> Prihvatam pravila korišćenja </td>
</tr>
<tr>
<td colspan="2"> <a class="btn btn-primary dugme dugme" href="room1.html" role="button">Registruj se</a>
<!--<a class="btn btn-primary dugme" href="rooms.html" role="button">Uloguj se</a>-->
</td>
</tr>
</table>
</form>
</div>
</div>
</div>
</body>