-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (47 loc) · 2.08 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Social Paka</title>
<link rel="stylesheet" href="bootstrap-3.3.7-dist/css/bootstrap.min.css" />
<link href="https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700" rel="stylesheet" />
<link rel="stylesheet" href="css/basic.css" />
<link rel="shortcut icon" type="image/x-icon" href="img/logo.png" />
<script src="js/jquery-3.2.1.min.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-1"></div>
<div class="col-md-10" id="banner">
<img src="img/banner.png" alt="Banner"/>
</div>
</div>
<div class="row">
<div class="col-md-1"></div>
<div class="col-md-10 middle">
<div class="col-md-4"></div>
<div class="col-md-4">
<form class="form-group" onsubmit="setCookie();return false;">
<h2>Suche Person</h2>
<input type="radio" name="sort" value="name" /><label>Name</label>
<input type="radio" name="sort" value="skills" /><label>Skills</label>
<br />
<input id="searchtext" type="text" name="a" class="form-control" />
<button type="submit" class="btn btn-primary" style="margin-top: 10px;">Suchen</button>
</form>
</div><a href="Download.html"><button type="button" class="btn btn-default" style="border: 3px solid;">Zur Downloadseite</button></a>
</div>
</div>
</div>
<script>
function setCookie() {
var radio = $("input[name='sort']:checked").val();
var text = $('#searchtext')[0].value;
document.cookie = "radio=" + radio + "; expires=Thu, 24 Dec 2018 12:00:00 UTC; path=/";
document.cookie = "search=" + text + "; expires=Thu, 24 Dec 2018 12:00:00 UTC; path=/";
window.location.replace('search.html');
};
</script>
</body>
</html>