Scratch space for learning atproto app development

Add account creation cta

Changed files
+10
src
pages
public
+4
src/pages/login.ts
···
<button type="submit">Log in</button>
${error ? html`<p>Error: <i>${error}</i></p>` : undefined}
</form>
+
<div class="signup-cta">
+
Don't have an account on the Atmosphere?
+
<a href="https://bsky.app">Sign up for Bluesky</a> to create one now!
+
</div>
</div>
</div>`
}
+6
src/public/styles.css
···
.status-line .author:hover {
text-decoration: underline;
+
}
+
+
.signup-cta {
+
text-align: center;
+
text-wrap: balance;
+
margin-top: 1rem;
}