Minor changed to UI
This commit is contained in:
parent
c6a1d33bad
commit
c563c04d5c
2 changed files with 69 additions and 68 deletions
|
|
@ -57,6 +57,7 @@ export default () => {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Page alignment="column">
|
<Page alignment="column">
|
||||||
|
<Padding left={4.75} right={4.75} top={0} bottom={0}>
|
||||||
<Row content="split">
|
<Row content="split">
|
||||||
<Link to="/">
|
<Link to="/">
|
||||||
<Row content="left" gap={2}>
|
<Row content="left" gap={2}>
|
||||||
|
|
@ -75,16 +76,9 @@ export default () => {
|
||||||
|
|
||||||
<Padding top={2} left={0} right={0} bottom={0}>
|
<Padding top={2} left={0} right={0} bottom={0}>
|
||||||
<Row>
|
<Row>
|
||||||
<Box curved thickness={2} padding={2} color="#2f465cd7" background="#04040642">
|
<Box curved thickness={2} padding={2} color="#2f465cd7" background="#04040654">
|
||||||
<Row>
|
<Row>
|
||||||
<span
|
<span class="box-title">Login</span>
|
||||||
class="box-title"
|
|
||||||
onClick={() => {
|
|
||||||
console.log(name())
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
Login
|
|
||||||
</span>
|
|
||||||
</Row>
|
</Row>
|
||||||
|
|
||||||
<Padding top={2} left={2} right={2} bottom={0}>
|
<Padding top={2} left={2} right={2} bottom={0}>
|
||||||
|
|
@ -120,10 +114,17 @@ export default () => {
|
||||||
<span class="required">Required name and password</span>
|
<span class="required">Required name and password</span>
|
||||||
</Row>
|
</Row>
|
||||||
</Show>
|
</Show>
|
||||||
|
|
||||||
|
<Show when={password() && !name()}>
|
||||||
|
<Row>
|
||||||
|
<span class="required">Required name</span>
|
||||||
|
</Row>
|
||||||
|
</Show>
|
||||||
</Padding>
|
</Padding>
|
||||||
</Box>
|
</Box>
|
||||||
</Row>
|
</Row>
|
||||||
</Padding>
|
</Padding>
|
||||||
|
</Padding>
|
||||||
</Page>
|
</Page>
|
||||||
|
|
||||||
<div onClick={gotoMain}>
|
<div onClick={gotoMain}>
|
||||||
|
|
|
||||||
|
|
@ -161,7 +161,7 @@ export default () => {
|
||||||
|
|
||||||
<Padding top={2} left={0} right={0} bottom={0}>
|
<Padding top={2} left={0} right={0} bottom={0}>
|
||||||
<Row>
|
<Row>
|
||||||
<Box curved thickness={2} padding={2} color="#2f465cd7" background="#04040642">
|
<Box curved thickness={2} padding={2} color="#2f465cd7" background="#04040654">
|
||||||
<Row>
|
<Row>
|
||||||
<span class="box-title">Registration</span>
|
<span class="box-title">Registration</span>
|
||||||
</Row>
|
</Row>
|
||||||
|
|
@ -202,19 +202,19 @@ export default () => {
|
||||||
|
|
||||||
<Show when={!file() && !password()}>
|
<Show when={!file() && !password()}>
|
||||||
<Row>
|
<Row>
|
||||||
<span class="already-registered">Need password and signature</span>
|
<span class="already-registered">Required password and signature</span>
|
||||||
</Row>
|
</Row>
|
||||||
</Show>
|
</Show>
|
||||||
|
|
||||||
<Show when={file() && !password()}>
|
<Show when={file() && !password()}>
|
||||||
<Row>
|
<Row>
|
||||||
<span class="already-registered">Need password</span>
|
<span class="already-registered">Required password</span>
|
||||||
</Row>
|
</Row>
|
||||||
</Show>
|
</Show>
|
||||||
|
|
||||||
<Show when={!file() && password()}>
|
<Show when={!file() && password()}>
|
||||||
<Row>
|
<Row>
|
||||||
<span class="already-registered">Need signature</span>
|
<span class="already-registered">Required signature</span>
|
||||||
</Row>
|
</Row>
|
||||||
</Show>
|
</Show>
|
||||||
</Padding>
|
</Padding>
|
||||||
|
|
@ -261,7 +261,7 @@ export default () => {
|
||||||
|
|
||||||
<Show when={!file()}>
|
<Show when={!file()}>
|
||||||
<Row>
|
<Row>
|
||||||
<span class="already-registered">Need signature</span>
|
<span class="already-registered">Required signature</span>
|
||||||
</Row>
|
</Row>
|
||||||
</Show>
|
</Show>
|
||||||
</Padding>
|
</Padding>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue