-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstate4.html
26 lines (25 loc) · 1.01 KB
/
state4.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
25
26
<div class="dark-bg state4" ng-swipe-right="prev()">
<header>
<h2>Who are you?</h2>
<h3>Safety on Mars is your responsibility</h3>
</header>
<div>
<form ng-submit="submitReport($event)" name="reportForm" novalidate >
<div class="body">
<div class="select-wrap">
<select ng-model="encounter.atype" ng-change="change()" name="type" required ng-class="{'notvalid': invalidType}" placeholder="Select an Alien type">
<option value="" selected>Select an Alien type</option>
<option value="{{alien.type}}"ng-repeat="alien in aliens">
{{alien.type}}
</option>
</select>
</div>
<textarea ng-model="encounter.action" ng-change="change()" name="act" required ng-class="{'notvalid': invalidAct}" placeholder="Action Taken">
</textarea>
</div>
<div class="submit-footer">
<button type="submit">Submit a Report</button>
</div>
</form>
</div>
</div>