Basic input box (e.g. name field)

First name Last name

Input with hint (e.g. password field)

Password Hint: favorite color @if (passwordModel.hasError('required')) { You must enter your password. }

Input with error message (e.g. email field)

Email @if (emailModel.hasError('required')) { You must enter your email. } @if (emailModel.hasError('email')) { Not a valid email address. }

Input with prefix & suffix (e.g. currency converter)

USD $ = JPY ‎¥‎ (as of 7/31/2017)

Textarea input (e.g. comment box)

Leave us a comment! {{commentCount}}/{{commentMax}}