| 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>%project_new</h1> |
| 13 | |
| 14 | <form method="post" action="/@repo.user_name/@repo.name/projects" class="project-form"> |
| 15 | <div class="field"> |
| 16 | <input type="text" name="name" placeholder="%project_name_placeholder" required> |
| 17 | </div> |
| 18 | <div class="field"> |
| 19 | <textarea name="description" placeholder="%project_description_placeholder" rows="4"></textarea> |
| 20 | </div> |
| 21 | <button type="submit" class="settings-form__submit">%project_create</button> |
| 22 | </form> |
| 23 | </div> |
| 24 | |
| 25 | @include '../layout/footer.html' |
| 26 | </body> |
| 27 | </html> |
| 28 | |