forked from shin10kudev/branch-name-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (71 loc) · 3.39 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!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>Enuygun Branch Name Generator</title>
<meta name="description" content="Tool for generating JIRA branch names to streamline planning and engineering work.">
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicons/favicon-16x16.png">
<link rel="manifest" href="assets/favicons/site.webmanifest">
<link rel="mask-icon" href="assets/favicons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="assets/favicons/favicon.ico">
<meta name="msapplication-TileColor" content="#00a300">
<meta name="msapplication-config" content="assets/favicons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/foundation/6.4.0/css/foundation.css'>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css'>
<link rel="stylesheet" href="assets/app.css">
</head>
<body>
<main class="page__wrapper">
<div data-branch-name-generator data-live-validate="true">
<div class="content__wrapper">
<h1 class="wrapper__title">Enuygun Branch Name Generator</h1>
<!-- form -->
<form class="grid-container" data-form>
<div class="grid-x grid-padding-x">
<!-- Project Type -->
<div class="cell small-12">
<label>Type
<select name="type">
<option value="hotfix">Hotfix</option>
<option value="feature">Feature</option>
<option value="epic">Epic</option>
<option value="problem">Problem</option>
<option value="refactor">Refactor</option>
<option value="document_update">Document Update</option>
<option value="unittest">Unit Test</option>
</select>
</label>
</div>
<!-- Ticket Number -->
<div class="cell small-12">
<label>Jira Link
<input type="text" name="issue">
</label>
</div>
<!-- Description -->
<div class="cell small-12">
<label>Description
<input type="text" name="description" aria-describedby="descriptionHelpText">
</label>
<p class="help-text" id="descriptionHelpText">Enter some keywords that describe your issue</p>
</div>
</div>
</form>
<!-- Output Area/Copy to clipboard button -->
<div class="output__wrapper animated" data-output-area>
</div>
</div>
</div>
</main>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.22.2/moment.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.1/clipboard.min.js'></script>
<script src="assets/app.js"></script>
</body>
</html>