| 1 | <!DOCTYPE html> |
| 2 | <html> |
| 3 | <head> |
| 4 | @include '../layout/head.html' |
| 5 | </head> |
| 6 | <body> |
| 7 | @include '../layout/header.html' |
| 8 | |
| 9 | <div class="content"> |
| 10 | @include '../layout/repo_menu.html' |
| 11 | |
| 12 | <h1>%milestone_new</h1> |
| 13 | |
| 14 | <form method="post" action="/@repo.user_name/@repo.name/milestones" class="milestone-form"> |
| 15 | <div class="field"> |
| 16 | <input type="text" name="title" placeholder="%milestone_title_placeholder" required> |
| 17 | </div> |
| 18 | <div class="field"> |
| 19 | <textarea name="description" placeholder="%milestone_description_placeholder" rows="4"></textarea> |
| 20 | </div> |
| 21 | <div class="field"> |
| 22 | <label>%milestone_due_date</label> |
| 23 | <input type="date" name="due_date"> |
| 24 | </div> |
| 25 | <button type="submit" class="settings-form__submit">%milestone_create</button> |
| 26 | </form> |
| 27 | </div> |
| 28 | |
| 29 | @include '../layout/footer.html' |
| 30 | </body> |
| 31 | </html> |
| 32 | |