-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease_create.php
76 lines (52 loc) · 1.71 KB
/
release_create.php
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
76
<!DOCTYPE html>
<html lang="en">
<head>
<title>Release Assistant - Create Release</title>
<?php
include('head.html');
?>
<link href="css/css-table.css" rel="stylesheet" type="text/css">
</head>
<body id="page-top">
<div id="wrapper">
<?php
include('sidebar.php');
?>
<div id="content-wrapper" class="d-flex flex-column">
<div id="content">
<?php
include('topbar.html');
?>
<div class="container-fluid">
<h1 class="h3 mb-4 text-gray-800">Create Release</h1>
<div class="card shadow mb-4">
<div class="card-body">
<form class="d-none d-sm-inline-block form-inline mr-auto ml-md-3 my-2 my-md-0 mw-100 navbar-search">
<span>Name</span>
<div class="input-group mb-2">
<input type="text" class="form-control bg-light border-0 small" placeholder="Release name...">
</div>
<span>Type</span>
<div class="input-group mb-2">
<input type="radio" class="form-control bg-light border-0 small" id="feature" name="type" value="feature">
<label for="feature">Feature</label>
<input type="radio" class="form-control bg-light border-0 small" id="fix" name="type" value="fix">
<label for="fix">Fix</label>
</div>
<div class="input-group-append mt-4">
<button class="btn btn-primary" type="button">
<i class="fas fa-square-plus fa-sm"></i>
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<?php
include('bottom.html');
?>
</body>
</html>