-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch_page.html
45 lines (45 loc) · 1.82 KB
/
search_page.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
{% load static %}
<html>
<head>
<title>JobSearch</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="author" content="colorlib.com">
<link href="https://fonts.googleapis.com/css?family=Poppins:400,800" rel="stylesheet" />
<link href="{% static 'css/main.css' %}" rel="stylesheet" />
</head>
<body>
<div class="s006">
<section id='login-form'>
<button id="login-btn">
<a href="{% url 'login' %}">Login</a>
</button>
<br>
<button id="login-btn">
<a href="{% url 'register' %}">Register</a>
</button>
</section>
<form onsubmit="SearchPage(event)">
<fieldset>
<div class="inner-form" id='inner-form'>
<legend>What are you looking for?</legend>
<div class="input-field">
<button class="btn-search" type="button">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path>
</svg>
</button>
<input id="search" name="search" type="text" class="input-search" placeholder="Type your job title and press enter..." />
</div>
</div>
<div class="suggestion-wrap">
</div>
<div class="job-card" id='jobs-wrapper'>
</div>
</fieldset>
</form>
</div>
<script src="{% static 'js/main.js' %}"></script>
</body>
</html>