1
0
Fork 0
mirror of https://codeberg.org/MarkusThielker/next-ory.git synced 2025-07-01 04:29:18 +00:00

NORY-46: fix uri input placeholders

This commit is contained in:
Markus Thielker 2025-04-07 14:00:10 +02:00
parent f73bfe603b
commit d9a3cde169

View file

@ -238,7 +238,7 @@ export function CreateClientForm({ action }: CreateClientFormProps) {
</FormDescription>
<FormControl>
<Input
placeholder="https://myapp.example/logo.png" {...field} />
placeholder="https://" {...field} />
</FormControl>
<FormMessage/>
</FormItem>
@ -259,7 +259,7 @@ export function CreateClientForm({ action }: CreateClientFormProps) {
</FormDescription>
<FormControl>
<Input
placeholder="https://myapp.example/privacy_policy"
placeholder="https://"
{...field}
/>
</FormControl>
@ -282,7 +282,7 @@ export function CreateClientForm({ action }: CreateClientFormProps) {
</FormDescription>
<FormControl>
<Input
placeholder="https://myapp.example/terms_of_service" {...field} />
placeholder="https://" {...field} />
</FormControl>
<FormMessage/>
</FormItem>