-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions.html
26 lines (25 loc) · 1.44 KB
/
questions.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Security-Policy" content="default-src * self blob: data: gap:; style-src * self 'unsafe-inline' blob: data: gap:; script-src * 'self' 'unsafe-eval' 'unsafe-inline' blob: data: gap:; object-src * 'self' blob: data: gap:; img-src * self 'unsafe-inline' blob: data: gap:; connect-src self * 'unsafe-inline' blob: data: gap:; frame-src * self blob: data: gap:;">
<title>Custom Cover Letter Extension - Questions</title>
<link rel="stylesheet" type="text/css" href="popup.css">
</head>
<body>
<div class="overlay">
<div class="popup">
<h1>Customize Your Cover Letter</h1>
<form id="coverLetterForm">
<label style='text-align:left; font-weight: 200;' for="company-name">Company Name</label>
<input style='margin-bottom: 17px;' type="text" id="company-name" placeholder="Company Name" required>
<label style='text-align:left; font-weight: 200;' for="position-name">Position</label>
<input style='margin-bottom: 17px; 'type="text" id="position-name" placeholder="Position Name" required>
<label style='text-align:left; font-weight: 200;' for="location">Location</label>
<input style='margin-bottom: 17px;' type="text" id="location" placeholder="Location" required>
<button id="continueButton" type="submit">Continue</button>
</form>
</div>
</div>
<script src="questions.js"></script>
</body>
</html>