woodpecker/server/static/scripts/views/repos_add.html

14 lines
358 B
HTML
Raw Normal View History

2015-04-08 22:43:59 +00:00
<h1>Add Repository</h1>
<a href="/">Back</a>
<div class="alert alert-error" ng-if="error !== undefined">
There was an error adding your repository. Please ensure the
repository exists and you have admin privileges.
</div>
2015-04-08 22:43:59 +00:00
<form>
<input type="text" placeholder="octocat/Hello-World" ng-model="slug" />
<button ng-click="add(slug)">Add</button>
</form>