| 1 | <div class="panel"> |
| 2 | <div class="head">📚 New repository</div> |
| 3 | <div class="body"> |
| 4 | <form class="auth-form" id="newRepoForm" autocomplete="off"> |
| 5 | <label for="rName">Repository name:</label> |
| 6 | <input type="text" id="rName" name="name" required maxlength="39" pattern="[a-z0-9][a-z0-9_-]*"> |
| 7 | <label for="rDesc">Description (optional):</label> |
| 8 | <input type="text" id="rDesc" name="description" maxlength="256"> |
| 9 | <label> |
| 10 | <input type="checkbox" name="private" id="rPrivate"> Private |
| 11 | </label> |
| 12 | <button type="submit">Create repository</button> |
| 13 | <div class="form-msg" id="formMsg"></div> |
| 14 | </form> |
| 15 | </div> |
| 16 | </div> |
| 17 | |