Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
260b9ad3f9
commit
5fb761984e
@@ -326,6 +326,29 @@ function ProfilePage() {
|
||||
/>
|
||||
</Field>
|
||||
|
||||
<div className="space-y-2">
|
||||
<Label className="text-xs">Typed signature (optional)</Label>
|
||||
<Input
|
||||
value={form.signature_typed}
|
||||
onChange={(e) => update("signature_typed", e.target.value)}
|
||||
placeholder="e.g. /s/ Jane Q. Attorney"
|
||||
/>
|
||||
{form.signature_typed && (
|
||||
<div className="border rounded-md bg-white p-3">
|
||||
<span
|
||||
className="text-2xl text-black"
|
||||
style={{ fontFamily: '"Lucida Handwriting", "Brush Script MT", cursive' }}
|
||||
>
|
||||
{form.signature_typed}
|
||||
</span>
|
||||
</div>
|
||||
)}
|
||||
<p className="text-xs text-muted-foreground">
|
||||
Used above the signature line if no signature image is uploaded. Rendered in a script font.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
<div className="space-y-2">
|
||||
<Label className="text-xs">Signature image (optional)</Label>
|
||||
<div className="flex flex-wrap items-center gap-4">
|
||||
|
||||
Reference in New Issue
Block a user