diff options
author | Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi> | 2015-04-21 23:48:54 +0300 |
---|---|---|
committer | Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi> | 2016-04-19 15:25:49 +0300 |
commit | a693a0459c176b86e17d536584d0c1c527f92857 (patch) | |
tree | f9cfd749454f1e24c14400741d403bb1f1388ce8 /web/insert.html | |
parent | be803d679f7a51f93194c86e37168c651471031b (diff) | |
download | aconf-0.6.0.tar.bz2 aconf-0.6.0.tar.xz |
web client: refactor using AngularJS and Bootstrapv0.6.0
Diffstat (limited to 'web/insert.html')
-rw-r--r-- | web/insert.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/web/insert.html b/web/insert.html new file mode 100644 index 0000000..0e293b6 --- /dev/null +++ b/web/insert.html @@ -0,0 +1,22 @@ +<!-- + Copyright (c) 2012-2015 Kaarle Ritvanen + See LICENSE file for license details +--> + +<div class="modal-header"> + <button class="close" ng-click="close()">×</button> + <h4 class="modal-title">Insert</h4> +</div> + +<form ng-submit="submit()"> + <div class="modal-body"> + <div class="alert alert-danger" ng-if="error">{{ error }}</div> + <div class="form-group"> + <label for="value" class="control-label">Value:</label> + <input type="text" class="form-control" ng-model="value"> + </div> + </div> + <div class="modal-footer"> + <input type="submit" class="btn btn-primary" value="Insert"> + </div> +</form> |