moved web resources to resource folder

This commit is contained in:
Ziver Koc 2016-02-27 02:24:09 +01:00
parent bf799fa74d
commit 3904ef857d
50 changed files with 13 additions and 14 deletions

29
resource/web/user_config.tmpl Executable file
View file

@ -0,0 +1,29 @@
<h1 class="page-header">Profile</h1>
<div class="col-md-8">
<div class="panel panel-default drop-shadow">
<div class="panel-heading">Profile Information</div>
<div class="panel-body">
<form class="form-horizontal" method="POST">
<input type="hidden" name="action" value="modify_local_user">
<div class="form-group">
<label for="username" class="col-sm-2 control-label">Username:</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="username" name="username" value="{{user.getUsername()}}">
</div>
</div>
<div class="form-group">
<label for="address" class="col-sm-2 control-label">Address:</label>
<div class="col-sm-10">
<textarea class="form-control" id="address" name="address">{{user.getAddress()}}</textarea>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-primary">Save</button>
</div>
</div>
</form>
</div>
</div>
</div>