tangled
alpha
login
or
join now
byarielm.fyi
/
atlast
16
fork
atom
ATlast — you'll never need to find your favorites on another platform again. Find your favs in the ATmosphere.
atproto
16
fork
atom
overview
issues
1
pulls
pipelines
chore: remove unused signup page
byarielm.fyi
1 week ago
f41a3985
57cf1ea0
verified
This commit was signed with the committer's
known signature
.
byarielm.fyi
SSH Key Fingerprint:
SHA256:tiR/P3lCKVUH+jzTEMtKH/Z4aYnnrkf/KdRBPq1n6Rc=
-67
1 changed file
expand all
collapse all
unified
split
inertia
pages
auth
signup.vue
-67
inertia/pages/auth/signup.vue
···
1
1
-
<script setup lang="ts">
2
2
-
import { Form } from '@adonisjs/inertia/vue'
3
3
-
</script>
4
4
-
5
5
-
<template>
6
6
-
<div class="form-container">
7
7
-
<div>
8
8
-
<h1>Signup</h1>
9
9
-
<p>Enter your details below to create your account</p>
10
10
-
</div>
11
11
-
12
12
-
<div>
13
13
-
<Form route="new_account.store" #default="{ processing, errors }">
14
14
-
<div>
15
15
-
<label for="fullName">Full name</label>
16
16
-
<input
17
17
-
type="text"
18
18
-
name="fullName"
19
19
-
id="fullName"
20
20
-
:data-invalid="errors.fullName ? 'true' : undefined"
21
21
-
/>
22
22
-
<div v-if="errors.fullName">{{ errors.fullName }}</div>
23
23
-
</div>
24
24
-
25
25
-
<div>
26
26
-
<label for="email">Email</label>
27
27
-
<input
28
28
-
type="email"
29
29
-
name="email"
30
30
-
id="email"
31
31
-
autocomplete="email"
32
32
-
:data-invalid="errors.email ? 'true' : undefined"
33
33
-
/>
34
34
-
<div v-if="errors.email">{{ errors.email }}</div>
35
35
-
</div>
36
36
-
37
37
-
<div>
38
38
-
<label for="password">Password</label>
39
39
-
<input
40
40
-
type="password"
41
41
-
name="password"
42
42
-
id="password"
43
43
-
autocomplete="new-password"
44
44
-
:data-invalid="errors.password ? 'true' : undefined"
45
45
-
/>
46
46
-
<div v-if="errors.password">{{ errors.password }}</div>
47
47
-
</div>
48
48
-
49
49
-
<div>
50
50
-
<label for="passwordConfirmation">Confirm password</label>
51
51
-
<input
52
52
-
type="password"
53
53
-
name="passwordConfirmation"
54
54
-
id="passwordConfirmation"
55
55
-
autocomplete="new-password"
56
56
-
:data-invalid="errors.passwordConfirmation ? 'true' : undefined"
57
57
-
/>
58
58
-
<div v-if="errors.passwordConfirmation">{{ errors.passwordConfirmation }}</div>
59
59
-
</div>
60
60
-
61
61
-
<div>
62
62
-
<button type="submit" class="button" :disabled="processing">Sign up</button>
63
63
-
</div>
64
64
-
</Form>
65
65
-
</div>
66
66
-
</div>
67
67
-
</template>