-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
55 lines (48 loc) · 2.07 KB
/
index.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
<!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>GitHub issue forms generator</title>
<style>
* {
font-family: sans-serif;
}
</style>
<script src="js.js"></script>
</head>
<body>
<header>
<div w3-include-html="elements/header.html"></div>
</header>
<article>
<section>
<p>This website helps you to create the new issue forms for GitHub issues.</p>
</section>
<section>
<h3>Start creating</h3>
<form action="step2.html" method="GET" validate>
<label for="Name">Name of the template (needs to be unique):*</label><br />
<input name="Name" type="text" required placeholder="Bug" /><br />
<label for="Description">Description of the template:*</label><br />
<input name="Description" minlength="3" type="text" required placeholder="Report a bug" /><br />
<label for="Title">Default title:</label><br />
<input name="Title" type="text" placeholder="[BUG]" /><br />
<label for="Labels">Labels separated with comma:</label><br />
<input name="Labels" type="text" placeholder="bug,triage" /><br />
<label for="Assignees">Assignees separated with comma:</label><br />
<input name="Assignees" type="text" placeholder="github, octocat" /><br />
<p>*Required fields</p>
<input name="Submit_button" type="submit" onClick="submitButtonClickedEvent()" /><br />
</form>
</section>
</article>
<footer>
<div w3-include-html="elements/footer.html"></div>
</footer>
</body>
<script>
includeHTML();
</script>
</html>