Skip to content

Commit

Permalink
relics form template
Browse files Browse the repository at this point in the history
Signed-off-by: Derek Smart <[email protected]>
  • Loading branch information
mcred committed Dec 3, 2016
1 parent 988ba24 commit 4644c0c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions app/templates/relics.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<div id="inventoryDiv">
<form #inventoryForm="ngForm" (ngSubmit)="updateFile()">
<div style="width: 800px; height: 57px; position: absolute; margin: -55px 0px 0px -10px;">
<img style="float:left; display:block; width: 458px; height: 47px;" src="./images/buttons/overwrite_data.png" />
<button style="margin-top:0px;" id="overwrite_yes" type="submit"></button>
<button style="margin-top:0px; margin-left:10px;" id="overwrite_no" (click)="cancelSave()"></button>
</div>
<div *ngFor="let key of arrayOfKeys" class="inventoryWrap">
{{ key }}<input type="number" id="{{ key }}" name="{{ key }}" [(ngModel)]="relics[key]">
</div>
</form>
</div>

0 comments on commit 4644c0c

Please sign in to comment.