-
Notifications
You must be signed in to change notification settings - Fork 0
/
account.html
53 lines (45 loc) · 2.56 KB
/
account.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
<!DOCTYPE html>
<html lang="sk">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Môj účet</title>
<link rel="icon" href="resources/pictures/favicon.png" type="image/gif" sizes="16x16">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="javascript/accountScript.js"></script>
</head>
<body>
<div id="log-success" class="info">
<span>Boli ste úspešne prihlásený.</span>
</div>
<header id="main-header">
<h1 id="main-h1">
Môj účet
</h1>
</header>
<section>
<header id="section-header" class="account-section-content">
<h2 id="section-h2">
</h2>
<a id="logout" data-toggle="tooltip" title="Odhlásiť"><img src="resources/pictures/logout.svg" width="32" height="32" alt="logout" onclick="logout()"></a>
<a id="undo" href="index.html" data-toggle="tooltip" title="Späť"><img src="resources/pictures/undo.svg" width="32" height="32" alt="undo"></a>
</header>
<div id="email" class="user-info account-section-content">
</div>
<div id="reg-date" class="user-info account-section-content">
</div>
<div id="button-history" class="account-section-content">
<button onclick="window.location ='login-history.html'" type="button" class="btn btn-outline-info">Minulé prihlásenia</button>
</div>
</section>
<footer>
<span>Designed by <a id="footer-href" href="http://147.175.121.202/~xpopikt/7243zadanie1/index.html">Tomáš Popík © </a></span>
</footer>
</body>
</html>