-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (38 loc) · 1.28 KB
/
index.html
File metadata and controls
43 lines (38 loc) · 1.28 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bages 🃏</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<main>
<div class="left">
<div class="left-inner">
<h1>CodeWorks Badge Generator</h1>
<p>Fill out the form to create a badge for your employee.</p>
<form id="badge-form">
<input name="name" type="text" placeholder="Name" required />
<input name="title" type="text" placeholder="Title" required />
<input name="imgUrl" type="url" placeholder="Employee Photo" required />
<select name="department" required>
<option value="" disabled selected>Select a department</option>
<option>Education</option>
<option>Technology</option>
<option>Operations</option>
<option>Human Resources</option>
<option>Marketing</option>
</select>
<button type="submit">Create Badge</button>
</form>
<button id="reset-btn">Clear All</button>
</div>
</div>
<div class="right">
<section id="badges"></section>
</div>
</main>
<script type="module" src="./dist/main.js"></script>
</body>
</html>