mirror of
https://codeberg.org/MarkusThielker/next-ory.git
synced 2025-07-01 12:39:18 +00:00
NORY-46: fix uri input placeholders
This commit is contained in:
parent
f73bfe603b
commit
d9a3cde169
1 changed files with 3 additions and 3 deletions
|
@ -238,7 +238,7 @@ export function CreateClientForm({ action }: CreateClientFormProps) {
|
||||||
</FormDescription>
|
</FormDescription>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
<Input
|
<Input
|
||||||
placeholder="https://myapp.example/logo.png" {...field} />
|
placeholder="https://" {...field} />
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<FormMessage/>
|
<FormMessage/>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
|
@ -259,7 +259,7 @@ export function CreateClientForm({ action }: CreateClientFormProps) {
|
||||||
</FormDescription>
|
</FormDescription>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
<Input
|
<Input
|
||||||
placeholder="https://myapp.example/privacy_policy"
|
placeholder="https://"
|
||||||
{...field}
|
{...field}
|
||||||
/>
|
/>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
|
@ -282,7 +282,7 @@ export function CreateClientForm({ action }: CreateClientFormProps) {
|
||||||
</FormDescription>
|
</FormDescription>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
<Input
|
<Input
|
||||||
placeholder="https://myapp.example/terms_of_service" {...field} />
|
placeholder="https://" {...field} />
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<FormMessage/>
|
<FormMessage/>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue