Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@
<Form onSubmit={updateEmail}>
<CardGrid>
<Heading tag="h6" size="7">Email</Heading>
<p>
Update user's email. An Email should be formatted as: <span class="inline-code"
>name@example.com</span
>.
</p>
<svelte:fragment slot="aside">
<ul>
<InputEmail
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@
<Heading tag="h6" size="7">Password</Heading>
</div>

<p>
Enter a new password. A password must contain <b>at least 8 characters.</b>
</p>
<p>Enter a new password. A password must contain at least 8 characters.</p>
<svelte:fragment slot="aside">
<ul>
<InputPassword
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@
<Form onSubmit={updatePhone}>
<CardGrid>
<Heading tag="h6" size="7">Phone</Heading>
<p>
Update user's phone. A phone number must contain leading '+' and maximum of 15 digits.
</p>
<svelte:fragment slot="aside">
<ul>
<InputPhone
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,8 @@

<Form onSubmit={updatePrefs}>
<CardGrid>
<Heading tag="h6" size="7">User Preferences</Heading>
<p>
You can update your user preferences by storing information on the user's objects so
they can easily be shared across devices and sessions.
</p>
<Heading tag="h6" size="7">Preferences</Heading>
<p>Add custom user preferences to share them across devices and sessions.</p>
<svelte:fragment slot="aside">
<form class="form u-grid u-gap-16">
<ul class="form-list">
Expand Down