-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgit.html
More file actions
32 lines (32 loc) · 1.03 KB
/
Copy pathgit.html
File metadata and controls
32 lines (32 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://unpkg.com/@primer/css@20/dist/primer.css">
</head>
<body>
<div class="container-lg p-4">
<div class="Box">
<div class="Box-header">
<h2 class="Box-title">Suggest a Skill</h2>
</div>
<div class="Box-body">
<form id="skillForm">
<div class="form-group">
<label for="skills">Skills (ID : Name) <span class="text-danger">*</span></label>
<textarea class="form-control" id="skills"
placeholder="SKILL-001 : Frontend Development SKILL-002 : Backend API"
required></textarea>
</div>
<div class="form-group">
<label>
<input type="checkbox" required>
I confirm these IDs are new and unique
</label>
</div>
<button class="btn btn-primary" type="submit">Submit Suggestion</button>
</form>
</div>
</div>
</div>
</body>
</html>