-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewProduct.html
24 lines (24 loc) · 885 Bytes
/
newProduct.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<div class="pos">
<h3>New Product:</h3>
<div class="left">
<label>Full Name: </label>
<br>
<label>Short Name: </label>
<br>
<label>Image URL: </label>
<br>
<label>Price: </label>
<br>
</div>
<div class="right">
<input type="text" ng-model="newproduct.fullName" placeholder="Full Name" size="50px">
<br>
<input type="text" ng-model="newproduct.shortName" placeholder="Short Name" size="50px">
<br>
<input type="text" ng-model="newproduct.imageUrl" placeholder="Image URL" size="50px">
<br>
<input type="text" ng-model="newproduct.price" placeholder="Price" size="50px">
<br><br>
<a href="#/" class="btnPos"><button ng-click="saveChanges()">✔ Save Changes</button></a>
</div>
</div>