Files
GitBucket/src/main/twirl/newrepo.scala.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>
}