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
<button type="submit">Log in</button>
28
${error ? html`<p>Error: <i>${error}</i></p>` : undefined}
29
</form>
0
0
0
0
30
</div>
31
</div>`
32
}
···
27
<button type="submit">Log in</button>
28
${error ? html`<p>Error: <i>${error}</i></p>` : undefined}
29
</form>
30
+
<div class="signup-cta">
31
+
Don't have an account on the Atmosphere?
32
+
<a href="https://bsky.app">Sign up for Bluesky</a> to create one now!
33
+
</div>
34
</div>
35
</div>`
36
}
+6
src/public/styles.css
···
202
203
.status-line .author:hover {
204
text-decoration: underline;
0
0
0
0
0
0
205
}
···
202
203
.status-line .author:hover {
204
text-decoration: underline;
205
+
}
206
+
207
+
.signup-cta {
208
+
text-align: center;
209
+
text-wrap: balance;
210
+
margin-top: 1rem;
211
}