Learn how to use Rust to build ATProto powered applications
at main 789 B view raw
1{% extends "base.html" %} 2 3{% block content %} 4<div id="root"> 5 <div id="header"> 6 <h1>Rusty Statusphere</h1> 7 <p>Set your status on the Atmosphere.</p> 8 </div> 9 <div class="container"> 10 <form action="/login" method="post" class="login-form"> 11 <input type="text" name="handle" placeholder="Enter your handle (eg alice.bsky.social)" required/> 12 <button type="submit">Log in</button> 13 {% if let Some(error) = self.error %} 14 <p>Error: <i>{{error}}</i></p> 15 {% endif %} 16 </form> 17 <div class="signup-cta"> 18 Don't have an account on the Atmosphere? 19 <a href="https://bsky.app">Sign up for Bluesky</a> to create one now! 20 </div> 21 </div> 22</div> 23 24{%endblock content%}