-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd.html
96 lines (87 loc) · 3.66 KB
/
add.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./assets/css/style.css">
<title>Add Page</title>
</head>
<body>
<header>
<div class="container">
<div class="header__content">
<img class="img-1" src="./assets/img/Triangle Copy 2.png" alt="Image">
<img class="img-2" src="./assets/img/Triangle Copy.png" alt="Image">
<img class="img-3" src="./assets/img/Triangle.png" alt="Image">
<div class="header__content-logo">
<img src="./assets/img/devjobs.png" alt="Images">
</div>
<div class="header__content-theme">
<label for="theme">
<i class="fas fa-sun"></i>
</label>
<label class="switch">
<input id="theme" type="checkbox" />
<span class="slider round"></span>
</label>
<label for="theme">
<i class="fa-solid fa-moon"></i>
</label>
</div>
</div>
</div>
</header>
<div class="add">
<div class="container">
<div class="add__content">
<div class="add__content-title">
<div class="add__content-info">
<p class="add__content-text">Added New Job</p>
</div>
</div>
</div>
</div>
</div>
<div class="add__form">
<div class="container">
<form action="" id="form">
<label for="">
Job Id
<input id="job-id" type="text" placeholder="Job Id">
</label>
<label for="">
Job Title
<input id="job-title" type="text" placeholder="Job Title">
</label>
<label for="">
Img URL
<input id="job-img" type="text" placeholder="Img URL">
</label>
<label for="">
<select id="job-select" name="" id="">
<option>Full Time</option>
<option>Part Time</option>
</select>
</label>
<label for="">
Job Company
<input id="job-company" type="text" placeholder="Job Company">
</label>
<label for="">
Job Location
<input id="job-location" type="text" placeholder="Job Location">
</label>
<div class="add__form-btn">
<button style="background-color: #8591f0;">Gancel</button>
<button class="add-btn">Add Job</button>
</div>
</form>
</div>
</div>
<script src="./assets/js/app.js"></script>
</body>
</html>