ATlast — you'll never need to find your favorites on another platform again. Find your favs in the ATmosphere.
atproto
16
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: remove unused signup page

byarielm.fyi f41a3985 57cf1ea0

verified
-67
-67
inertia/pages/auth/signup.vue
··· 1 - <script setup lang="ts"> 2 - import { Form } from '@adonisjs/inertia/vue' 3 - </script> 4 - 5 - <template> 6 - <div class="form-container"> 7 - <div> 8 - <h1>Signup</h1> 9 - <p>Enter your details below to create your account</p> 10 - </div> 11 - 12 - <div> 13 - <Form route="new_account.store" #default="{ processing, errors }"> 14 - <div> 15 - <label for="fullName">Full name</label> 16 - <input 17 - type="text" 18 - name="fullName" 19 - id="fullName" 20 - :data-invalid="errors.fullName ? 'true' : undefined" 21 - /> 22 - <div v-if="errors.fullName">{{ errors.fullName }}</div> 23 - </div> 24 - 25 - <div> 26 - <label for="email">Email</label> 27 - <input 28 - type="email" 29 - name="email" 30 - id="email" 31 - autocomplete="email" 32 - :data-invalid="errors.email ? 'true' : undefined" 33 - /> 34 - <div v-if="errors.email">{{ errors.email }}</div> 35 - </div> 36 - 37 - <div> 38 - <label for="password">Password</label> 39 - <input 40 - type="password" 41 - name="password" 42 - id="password" 43 - autocomplete="new-password" 44 - :data-invalid="errors.password ? 'true' : undefined" 45 - /> 46 - <div v-if="errors.password">{{ errors.password }}</div> 47 - </div> 48 - 49 - <div> 50 - <label for="passwordConfirmation">Confirm password</label> 51 - <input 52 - type="password" 53 - name="passwordConfirmation" 54 - id="passwordConfirmation" 55 - autocomplete="new-password" 56 - :data-invalid="errors.passwordConfirmation ? 'true' : undefined" 57 - /> 58 - <div v-if="errors.passwordConfirmation">{{ errors.passwordConfirmation }}</div> 59 - </div> 60 - 61 - <div> 62 - <button type="submit" class="button" :disabled="processing">Sign up</button> 63 - </div> 64 - </Form> 65 - </div> 66 - </div> 67 - </template>