colorful rat Ratfactor.com > Dave's Repos

famsite

A super tiny social site for families
git clone http://ratfactor.com/repos/famsite/famsite.git

famsite/not-logged-in.html

Download raw file: not-logged-in.html

1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <title>Login, Fam!</title> 5 <meta charset="utf-8"> 6 <meta name="viewport" content="width=device-width, initial-scale=1"> 7 <link rel="icon" type="image/png" href="/hearts.png"> 8 <link rel="stylesheet" href="/styles.css"> 9 <style> 10 input[name='login'] { 11 width: 400px; 12 padding: 1em; 13 text-align: center; 14 } 15 input[type='submit'] { padding: 1em; } 16 </style> 17 </head> 18 <body> 19 <center><!-- Yup, you see that correctly! The center tag in 2025! --> 20 <img src="/hearts.png" class="hearts" alt=""> 21 <img src="/hearts.png" class="hearts" alt=""> 22 <img src="/hearts.png" class="hearts" alt=""> 23 <h1>Fam Login</h1> 24 25 <form action="login.php" method="POST"> 26 <p>Enter your login code in the field below and click the 'login' button:</p> 27 <input type="text" name="login"> 28 <input type="submit" value="Login"> 29 </form> 30 </center> 31 </body> 32 </html>