-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (64 loc) · 3.26 KB
/
Copy pathindex.html
File metadata and controls
68 lines (64 loc) · 3.26 KB
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
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style.css" media="screen"/>
<title>Document</title>
<script>
function onLoggedInResult(loggedIn)
{
if(!loggedIn)
{
document.getElementById('profile').style.display = "none";
document.getElementById('start').style.display = "none";
}
else
{
document.getElementById('login').innerHTML = "";
document.getElementById('reg').innerHTML = "";
}
}
function getJobOffer()
{
Monkey.getJobOffer();
}
</script>
</head>
<body>
<nav>
<ul>
<li><a id="login" href="login">Log In</a></li>
<li><img width="250px" src="https://github.com/CodeWeekLatvia/Its-not-a-bug-its-a-feature/blob/main/logo.png?raw=true" alt="logo"></li>
<li><a id="reg" href="register">Register</a></li>
</ul>
</nav>
<div class="appInfo">
<div class="appInfoFlex">
<h2>About this app</h2>
<p>
This app is designed to help you find job quicker without any unnecessary delay that you usually get on other sites.
Just specify your interests and the algorithm will try to show a job that you may like.
If you do like the job, click accept and later employer will write to you to disccuss about the job.
Have fun!
</p>
</div>
</div>
<ul class="buttons">
<li onclick="location.href='profile'; return false;" id="profile" class="profile">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="15pt" height="15pt" viewBox="0 0 15 15" version="1.1">
<path d="M 10.855469 3.355469 C 10.855469 5.207031 9.351562 6.710938 7.5 6.710938 C 5.648438 6.710938 4.144531 5.207031 4.144531 3.355469 C 4.144531 1.503906 5.648438 0 7.5 0 C 9.351562 0 10.855469 1.503906 10.855469 3.355469 Z M 10.855469 3.355469 "/>
<path d="M 7.5 7.5 C 4.230469 7.5 1.578125 10.152344 1.578125 13.421875 C 1.578125 14.292969 2.285156 15 3.15625 15 L 11.84375 15 C 12.714844 15 13.421875 14.292969 13.421875 13.421875 C 13.421875 10.152344 10.769531 7.5 7.5 7.5 Z M 7.5 7.5 "/>
</svg>
<p>Profile</p>
</li>
<li onclick="getJobOffer(); return false;" id="start" class="start">
<svg id="bold" enable-background="new 0 0 24 24" height="512" viewBox="0 0 24 24" width="512" xmlns="http://www.w3.org/2000/svg">
<path d="m15 6.5c-.552 0-1-.448-1-1v-1.5h-4v1.5c0 .552-.448 1-1 1s-1-.448-1-1v-1.5c0-1.103.897-2 2-2h4c1.103 0 2 .897 2 2v1.5c0 .552-.448 1-1 1z"/>
<path d="m12.71 15.38c-.18.07-.44.12-.71.12s-.53-.05-.77-.14l-11.23-3.74v7.63c0 1.52 1.23 2.75 2.75 2.75h18.5c1.52 0 2.75-1.23 2.75-2.75v-7.63z"/>
<path d="m24 7.75v2.29l-11.76 3.92c-.08.03-.16.04-.24.04s-.16-.01-.24-.04l-11.76-3.92v-2.29c0-1.52 1.23-2.75 2.75-2.75h18.5c1.52 0 2.75 1.23 2.75 2.75z"/>
</svg>
<p>Start</p>
</li>
</ul>
</body>
</html>