mirror of
https://github.com/lukevella/rallly.git
synced 2025-06-04 03:32:12 +02:00
User lowercase for repo
This commit is contained in:
parent
7f11d79e49
commit
6c2ca12786
6 changed files with 18 additions and 13 deletions
|
@ -38,8 +38,11 @@ export const UserDetailsForm: React.VoidFunctionComponent<
|
|||
style={{ width: 400 }}
|
||||
onSubmit={handleSubmit(onSubmit)}
|
||||
>
|
||||
<h2>Your details</h2>
|
||||
<div className="formField">
|
||||
<label htmlFor="name">{t("name")}</label>
|
||||
<label className="text-slate-500" htmlFor="name">
|
||||
{t("name")}
|
||||
</label>
|
||||
<input
|
||||
type="text"
|
||||
id="name"
|
||||
|
@ -52,7 +55,9 @@ export const UserDetailsForm: React.VoidFunctionComponent<
|
|||
</div>
|
||||
|
||||
<div className="formField">
|
||||
<label htmlFor="contact">{t("email")}</label>
|
||||
<label className="text-slate-500" htmlFor="contact">
|
||||
{t("email")}
|
||||
</label>
|
||||
<input
|
||||
id="contact"
|
||||
className={clsx("input w-full", {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue