-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsubmissions.html
140 lines (137 loc) · 4.36 KB
/
submissions.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jobs</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="./css/master.css">
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="site-wrapper">
<header class="site-header">
<div class="row site-header-inner">
<div class="site-header-branding">
<h1 class="site-title"><a href="/index.html">Job Offers</a></h1>
</div>
<nav class="site-header-navigation">
<ul class="menu">
<li class="menu-item">
<a href="/index.html">Home</a>
</li>
<li class="menu-item current-menu-item">
<a href="/dashboard.html">Dashboard</a>
</li>
<li class="menu-item">
<a href="/profile.html">My Profile</a>
</li>
<li class="menu-item">
<a href="/login.html">Sign Out</a>
</li>
</ul>
</nav>
<button class="menu-toggle">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="none" d="M0 0h24v24H0z"/><path fill="currentColor" class='menu-toggle-bars' d="M3 4h18v2H3V4zm0 7h18v2H3v-2zm0 7h18v2H3v-2z"/></svg>
</button>
</div>
</header>
<main class="site-main">
<section class="section-fullwidth">
<div class="row">
<ul class="tabs-menu">
<li class="menu-item current-menu-item">
<a href="#">Jobs</a>
</li>
<li class="menu-item">
<a href="#">Categories</a>
</li>
</ul>
<div class="section-heading">
<h2 class="heading-title">Job Title - Submissions - 6 Applicants</h2>
</div>
<ul class="jobs-listing">
<li class="job-card">
<div class="job-primary">
<h2 class="job-title">Applicant Name</h2>
</div>
<div class="job-secondary centered-content">
<div class="job-actions">
<a href="#" class="button button-inline">View</a>
</div>
</div>
</li>
<li class="job-card">
<div class="job-primary">
<h2 class="job-title">Applicant Name</h2>
</div>
<div class="job-secondary centered-content">
<div class="job-actions">
<a href="#" class="button button-inline">View</a>
</div>
</div>
</li>
<li class="job-card">
<div class="job-primary">
<h2 class="job-title">Applicant Name</h2>
</div>
<div class="job-secondary centered-content">
<div class="job-actions">
<a href="#" class="button button-inline">View</a>
</div>
</div>
</li>
<li class="job-card">
<div class="job-primary">
<h2 class="job-title">Applicant Name</h2>
</div>
<div class="job-secondary centered-content">
<div class="job-actions">
<a href="#" class="button button-inline">View</a>
</div>
</div>
</li>
<li class="job-card">
<div class="job-primary">
<h2 class="job-title">Applicant Name</h2>
</div>
<div class="job-secondary centered-content">
<div class="job-actions">
<a href="#" class="button button-inline">View</a>
</div>
</div>
</li>
</ul>
<div class="jobs-pagination-wrapper">
<div class="nav-links">
<a class="page-numbers current">1</a>
<a class="page-numbers">2</a>
<a class="page-numbers">3</a>
<a class="page-numbers">4</a>
<a class="page-numbers">5</a>
</div>
</div>
</div>
</section>
</main>
<footer class="site-footer">
<div class="row">
<p>Copyright 2020 | Developer links:
<a href="/index.html">Home</a>,
<a href="/dashboard.html">Jobs Dashboard</a>,
<a href="/single.html">Single</a>,
<a href="/login.html">Login</a>,
<a href="/register.html">Register</a>,
<a href="/submissions.html">Submissions</a>,
<a href="/apply-submission.html">Apply Submission</a>,
<a href="/view-submission.html">View Submission</a>,
<a href="/actions-job.html">Create-Edit Job</a>,
<a href="/category-dashboard.html">Category Dashboard</a>,
<a href="/profile.html">My Profile</a>
</p>
</div>
</footer>
</div>
</body>
</html>