forked from angular-redux/platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.html
42 lines (36 loc) · 817 Bytes
/
page.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<form connect="feedback">
<h2>Feedback Form</h2>
<p>
Did you enjoy your time at the zoo? Let us know using
the form below.
<p>
<label for="firstName">
First Name:
<input
name="firstName"
type="text"
maxLength="25"
ngControl
ngModel />
</label>
<label for="lastName">Last Name:
<input
name="lastName"
type="text"
maxLength="25"
ngControl
ngModel />
</label>
<label for="comments">Comments:
<textarea
name="comments"
[maxLength]="getMaxCommentChars()"
ngControl
ngModel></textarea>
<p>{{ charsLeft | async }} characters remaining.
</label>
<button>Send!</button>
<p class="footnote">
(<sup>*</sup>doesn't really send anything - this is just a demo after all.)
</p>
</form>