terms label
This commit is contained in:
parent
76a6eb2710
commit
87ea0eb81f
@ -90,6 +90,11 @@
|
|||||||
.login {
|
.login {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: column;
|
flex-flow: column;
|
||||||
|
|
||||||
|
.terms {
|
||||||
|
display: inline;
|
||||||
|
margin: 0 1em;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -79,9 +79,11 @@ function Register(args) {
|
|||||||
<div>
|
<div>
|
||||||
<input
|
<input
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
|
name="terms"
|
||||||
|
id="register-terms"
|
||||||
onInput={linkState(this, 'terms')
|
onInput={linkState(this, 'terms')
|
||||||
}/>
|
}/>
|
||||||
Confirm agreement to terms of service
|
<label class="terms" for="register-terms">Confirm agreement to terms of service.</label>
|
||||||
<button onClick={() => window.open('/tos.html')}>VIEW</button>
|
<button onClick={() => window.open('/tos.html')}>VIEW</button>
|
||||||
</div>
|
</div>
|
||||||
<button
|
<button
|
||||||
|
|||||||
@ -450,7 +450,7 @@ pub fn start(pool: PgPool, events_tx: CbSender<Event>, stripe: StripeClient) {
|
|||||||
}
|
}
|
||||||
// we done
|
// we done
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
info!("{:?}", e);
|
// info!("{:?}", e);
|
||||||
break;
|
break;
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user