mirror of
https://github.com/jorgev259/soc_site-astro.git
synced 2025-06-29 07:57:41 +00:00
Update to tailwind V4
This commit is contained in:
parent
fee27fa99e
commit
44ffb3d986
13 changed files with 262 additions and 434 deletions
|
|
@ -40,13 +40,23 @@ export default function ForgorForm(props: { token: string }) {
|
|||
<label htmlFor='password' className='font-medium text-black'>
|
||||
{m.newPassword()}:
|
||||
</label>
|
||||
<input type='password' name='password' className='bg-zinc-200 rounded p-2 mt-2 mb-3 text-black' required />
|
||||
<input
|
||||
type='password'
|
||||
name='password'
|
||||
className='bg-zinc-200 rounded-md p-2 mt-2 mb-3 text-black'
|
||||
required
|
||||
/>
|
||||
</div>
|
||||
<div className='flex flex-col'>
|
||||
<label htmlFor='password2' className='font-medium text-black'>
|
||||
{m.newPasswordRetype()}:
|
||||
</label>
|
||||
<input type='password' name='password2' className='bg-zinc-200 rounded p-2 mt-2 mb-3 text-black' required />
|
||||
<input
|
||||
type='password'
|
||||
name='password2'
|
||||
className='bg-zinc-200 rounded-md p-2 mt-2 mb-3 text-black'
|
||||
required
|
||||
/>
|
||||
</div>
|
||||
<div className='mx-auto'>
|
||||
<Button type='submit' loading={loading} disabled={loading}>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue