1f4f2b2f0f
* move submit buttons in auth-form into a form tag because IE11 is sad * add acceptance test for auth-method clearing * update ember-cli-page-object * actually remove the form attr on the auth-form component * remove form attribute on init form * remove form attribute from shamir-flow component * stringify not strigify
26 lines
522 B
Handlebars
26 lines
522 B
Handlebars
<div class="field">
|
|
<label for="username" class="is-label">Username</label>
|
|
<div class="control">
|
|
{{input
|
|
value=username
|
|
name="username"
|
|
id="username"
|
|
class="input"
|
|
data-test-username=true
|
|
}}
|
|
</div>
|
|
</div>
|
|
<div class="field">
|
|
<label for="password" class="is-label">Password</label>
|
|
<div class="control">
|
|
{{input
|
|
value=password
|
|
name="password"
|
|
id="password"
|
|
type="password"
|
|
class="input"
|
|
data-test-password=true
|
|
}}
|
|
</div>
|
|
</div>
|