add fxA ui elements

This commit is contained in:
Emily 2018-08-03 12:24:41 -07:00
parent 4c64593262
commit 894545a6f0
29 changed files with 612 additions and 370 deletions

View file

@ -37,6 +37,7 @@ module.exports = function(state, emit) {
${state.translate('signInContinueMessage')}
<form
onsubmit=${submitEmail}
data-no-csrf>
<input
type="text"
@ -57,4 +58,9 @@ module.exports = function(state, emit) {
</div>
`;
function submitEmail(event) {
event.preventDefault();
//TODO: hook up fxA onboarding
}
};