Add user signup form and implement signup view; enhance message display in templates
This commit is contained in:
parent
6ab5748cbc
commit
700ab7ecca
8 changed files with 66 additions and 2 deletions
|
@ -37,3 +37,30 @@ a.group {
|
|||
color: var(--pico-color-zinc-500);
|
||||
margin-left: .5em;
|
||||
}
|
||||
|
||||
article.message {
|
||||
&::before {
|
||||
margin-right: .5em;
|
||||
font-family: remixicon;
|
||||
}
|
||||
&.debug::before {
|
||||
content: "\eb06";
|
||||
color: var(--pico-color-zinc-500);
|
||||
}
|
||||
&.info::before {
|
||||
content: "\ee58";
|
||||
color: var(--pico-color-indigo-600);
|
||||
}
|
||||
&.success::before {
|
||||
content: "\eb80";
|
||||
color: var(--pico-color-green-500);
|
||||
}
|
||||
&.warning::before {
|
||||
content: "\eca0";
|
||||
color: var(--pico-color-amber-200);
|
||||
}
|
||||
&.error::before {
|
||||
content: "\eca0";
|
||||
color: var(--pico-color-red-500);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue