SSOPage: add placeholder text

This commit is contained in:
Ulysse Carion 2024-05-17 13:10:37 -07:00
parent 4657daaf8d
commit 79cb2f1704

View File

@ -151,7 +151,11 @@ export function SSOPage() {
<FormLabel>Email</FormLabel> <FormLabel>Email</FormLabel>
<FormControl> <FormControl>
<div className="flex"> <div className="flex">
<Input className="rounded-r-none" {...field} /> <Input
className="rounded-r-none"
placeholder="wouldyoulikehelp"
{...field}
/>
<span className="inline-flex text-sm items-center rounded-r-md border border-l-0 border-input px-3 text-muted-foreground"> <span className="inline-flex text-sm items-center rounded-r-md border border-l-0 border-input px-3 text-muted-foreground">
@{app.requiredDomain} @{app.requiredDomain}
</span> </span>
@ -170,7 +174,7 @@ export function SSOPage() {
<FormItem className="col-span-1"> <FormItem className="col-span-1">
<FormLabel>First Name</FormLabel> <FormLabel>First Name</FormLabel>
<FormControl> <FormControl>
<Input {...field} /> <Input placeholder="Clippy" {...field} />
</FormControl> </FormControl>
<FormMessage /> <FormMessage />
</FormItem> </FormItem>
@ -184,7 +188,7 @@ export function SSOPage() {
<FormItem className="col-span-1"> <FormItem className="col-span-1">
<FormLabel>Last Name</FormLabel> <FormLabel>Last Name</FormLabel>
<FormControl> <FormControl>
<Input {...field} /> <Input placeholder="the Paperclip" {...field} />
</FormControl> </FormControl>
<FormMessage /> <FormMessage />
</FormItem> </FormItem>