mirror of
https://github.com/gitbucket/gitbucket.git
synced 2025-11-08 22:45:51 +01:00
18 lines
647 B
HTML
18 lines
647 B
HTML
@()(implicit context: app.Context)
|
|
@import context._
|
|
@main("Create a New Repository"){
|
|
<form id="form" method="post" action="@path/new" validate="true">
|
|
<fieldset>
|
|
<label for="name"><strong>Repository name</strong></label>
|
|
<input type="text" name="name" id="name" />
|
|
<span id="error-name" class="error-message"></span>
|
|
</fieldset>
|
|
<fieldset>
|
|
<label for="description"><strong>Description</strong> (optional)</label>
|
|
<input type="text" name="description" id="description" style="width: 600px;"/>
|
|
</fieldset>
|
|
<fieldset>
|
|
<input type="submit" class="btn btn-primary" value="Create repository"/>
|
|
</fieldset>
|
|
</form>
|
|
} |