mirror of
https://github.com/gitbucket/gitbucket.git
synced 2025-11-04 20:45:58 +01:00
17 lines
593 B
HTML
17 lines
593 B
HTML
@()
|
|
@main("Create a New Repository"){
|
|
<form id="form" method="post" action="/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>
|
|
} |