request.new.tpl.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
{{template "prelude.tpl.html" .}}
<title>{{.Repo}} New Change Request - Senary</title>
</head>
<body>
    <header class="container-fluid">
        {{ template "header.tpl.html" .}}
    </header>
<main class="container-fluid repomain">

{{template "repomenu.tpl.html" .}}
<div>

  {{range .Warnings}}
      <div class="error">{{.Message}}</div>
      <br/>
  {{end}}
  <h2>Submit a New Change Request</h2>
<form method="post" >
  <fieldset>
    <label>
      Summary
      <input
        name="summary"
        placeholder="A one line summary of the issue/request"
        minlength="10"
      />
    </label>
    <label>
      Description
      <textarea
        name="description"
        placeholder="Please outline the issue/change request in full."
        minlength="10"
      ></textarea>
    </label>
  </fieldset>

  <input
    type="submit"
    value="Suggest Issue"
  />
</form>
</div>
</main>

<footer>
</footer>
 
</body>
</html>