code/client/static/index.html (28 lines of code) (raw):

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Trainer Demo</title> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;1,100;1,300;1,400;1,700&family=Wendy+One&display=swap" rel="stylesheet"> <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" /> <link rel="stylesheet" href="css/main.css"> <script src="/js/main.js"></script> </head> <body> <h1>Trainer Demo</h1> <div> <p class="congrats"> You have successfully run <code>deploystack-nosql-client-server</code>. Thanks for trying it out! </p> <p>This is just a simple little editor that saves a list of trainers. It was heavily inspired by <a href="https://github.com/tfogo/mongodb-go-tutorial">this introduction to MongoDB Go Driver</a>. </p> </div> <div class="list"></div> </body> </html>