eventman/angular_app/person-detail.html

22 lines
966 B
HTML
Raw Normal View History

2015-03-22 09:08:38 +01:00
<!-- show details of a single Person (editing also take place here) -->
<div class="container">
2015-03-21 16:48:00 +01:00
<form ng-model="persondetails" ng-submit="save()">
<div class="input-group input-group-lg">
2015-03-23 23:06:44 +01:00
<span class="input-group-addon">Name</span>
2015-03-30 21:31:09 +02:00
<input type="text" class="form-control" placeholder="Name" ng-model="person.name" ng-required="1">
2015-03-21 16:48:00 +01:00
</div>
2015-03-15 23:05:59 +01:00
2015-03-21 16:48:00 +01:00
<div class="input-group input-group-lg top5">
2015-03-23 23:06:44 +01:00
<span class="input-group-addon">Surname</span>
2015-03-30 21:31:09 +02:00
<input type="text" class="form-control" placeholder="Surname" ng-model="person.surname">
2015-03-21 16:48:00 +01:00
</div>
2015-03-15 23:05:59 +01:00
2015-03-21 16:48:00 +01:00
<div class="input-group top5">
2015-03-23 23:06:44 +01:00
<span class="input-group-addon">Email</span>
2015-03-30 21:31:09 +02:00
<input type="email" name="email" class="form-control" placeholder="root@example.com" ng-model="person.email">
2015-03-21 16:48:00 +01:00
</div>
2015-03-15 23:05:59 +01:00
2015-03-21 16:48:00 +01:00
<input type="submit" style="position: absolute; left: -9999px; width: 1px; height: 1px;"/>
</form>
</div>