tangled
alpha
login
or
join now
graham.systems
/
statusphere-react
forked from
samuel.fm/statusphere-react
0
fork
atom
the statusphere demo reworked into a vite/react app in a monorepo
0
fork
atom
overview
issues
pulls
pipelines
Add account creation cta
Paul Frazee
2 years ago
97561b3c
1fc19212
+10
2 changed files
expand all
collapse all
unified
split
src
pages
login.ts
public
styles.css
+4
src/pages/login.ts
···
27
27
<button type="submit">Log in</button>
28
28
${error ? html`<p>Error: <i>${error}</i></p>` : undefined}
29
29
</form>
30
30
+
<div class="signup-cta">
31
31
+
Don't have an account on the Atmosphere?
32
32
+
<a href="https://bsky.app">Sign up for Bluesky</a> to create one now!
33
33
+
</div>
30
34
</div>
31
35
</div>`
32
36
}
+6
src/public/styles.css
···
202
202
203
203
.status-line .author:hover {
204
204
text-decoration: underline;
205
205
+
}
206
206
+
207
207
+
.signup-cta {
208
208
+
text-align: center;
209
209
+
text-wrap: balance;
210
210
+
margin-top: 1rem;
205
211
}