Add url field lmao
This commit is contained in:
parent
00eb688c54
commit
67114bafeb
1 changed files with 25 additions and 1 deletions
|
@ -30,6 +30,7 @@ export default function ClanFormTemplate({
|
|||
({
|
||||
name: "",
|
||||
description: "",
|
||||
url: "",
|
||||
members: [
|
||||
{
|
||||
name: "",
|
||||
|
@ -480,7 +481,7 @@ export default function ClanFormTemplate({
|
|||
<div className={form_globals.horizlist}>
|
||||
<span className={globals.icon}>image</span>
|
||||
<Field
|
||||
type="text"
|
||||
type="url"
|
||||
name="pfp"
|
||||
placeholder="https://example.com/"
|
||||
className={`
|
||||
|
@ -494,6 +495,29 @@ export default function ClanFormTemplate({
|
|||
render={ErrorHandler}
|
||||
/>
|
||||
</div>
|
||||
<hr className={globals.invisep} />
|
||||
<div className={globals.verticalListTop}>
|
||||
<div className={form_globals.verticalListCrunch}>
|
||||
<p className={globals.titleSmall}>URL</p>
|
||||
<span className={globals.text}>A link to your clan's main resource on the interwebs.</span>
|
||||
</div>
|
||||
<div className={form_globals.horizlist}>
|
||||
<span className={globals.icon}>link</span>
|
||||
<Field
|
||||
type="url"
|
||||
name="url"
|
||||
placeholder="https://example.com/"
|
||||
className={`
|
||||
${form_globals.textLikeInput}
|
||||
${form_globals.textLikeInputTight}
|
||||
`}
|
||||
/>
|
||||
</div>
|
||||
<ErrorMessage
|
||||
name="url"
|
||||
render={ErrorHandler}
|
||||
/>
|
||||
</div>
|
||||
</Box>
|
||||
<Box properties={{ title: { text: "More" } }}>
|
||||
<span className={globals.text}>Clan preferences, et cetera.</span>
|
||||
|
|
Loading…
Reference in a new issue