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:
parent
f73bfe603b
commit
d9a3cde169
1 changed files with 3 additions and 3 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue