hw2 tests pass on chrome

This commit is contained in:
2017-04-30 20:02:47 +03:00
parent cf0672d338
commit c658a1b4fa
9 changed files with 245 additions and 1 deletions

20
ng1/app/edit.html Normal file
View File

@@ -0,0 +1,20 @@
<form>
<table class="form-table">
<tbody>
<tr>
<td>Eesnimi:</td>
<td><input id="name-input" ng-model="vm.contact.name"/></td>
</tr>
<tr>
<td>Telefon:</td>
<td><input id="phone-input" ng-model="vm.contact.phone"/></td>
</tr>
<tr>
<td colspan="2" align="right"><br/>
<a href ng-click="vm.submitForm()" id="save-link">Salvesta</a>
</td>
</tr>
</tbody>
</table>
</form>