/ index.html
index.html
1 <!doctype html> 2 <html lang="en"> 3 <head> 4 <meta charset="utf-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1"> 6 <title>C-radicle</title> 7 <link href="/css/bootstrap/bootstrap.min.css" rel="stylesheet"> 8 <style> 9 .bd-placeholder-img { 10 font-size: 1.125rem; 11 text-anchor: middle; 12 -webkit-user-select: none; 13 -moz-user-select: none; 14 user-select: none; 15 } 16 17 @media (min-width: 768px) { 18 .bd-placeholder-img-lg { 19 font-size: 3.5rem; 20 } 21 } 22 23 .b-example-divider { 24 height: 3rem; 25 background-color: rgba(0, 0, 0, .1); 26 border: solid rgba(0, 0, 0, .15); 27 border-width: 1px 0; 28 box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15); 29 } 30 31 .b-example-vr { 32 flex-shrink: 0; 33 width: 1.5rem; 34 height: 100vh; 35 } 36 37 .bi { 38 vertical-align: -.125em; 39 fill: currentColor; 40 } 41 42 .nav-scroller { 43 position: relative; 44 z-index: 2; 45 height: 2.75rem; 46 overflow-y: hidden; 47 } 48 49 .nav-scroller .nav { 50 display: flex; 51 flex-wrap: nowrap; 52 padding-bottom: 1rem; 53 margin-top: -1px; 54 overflow-x: auto; 55 text-align: center; 56 white-space: nowrap; 57 -webkit-overflow-scrolling: touch; 58 } 59 </style> 60 <link href="/css/signin.css" rel="stylesheet"> 61 <link rel="icon" type="image/png" href="/favicon.png"> 62 </head> 63 <body class="text-center"> 64 <main class="form-signin w-100 m-auto"> 65 <form action="/" method="post"> 66 <img class="mb-4" src="/img/logo.svg" alt="" width="100%"> 67 <h1 class="h3 mb-3 fw-normal">Create a new identity</h1> 68 <div class="form-floating"> 69 <input type="text" class="form-control" id="floatingInput" placeholder="user"> 70 <label for="floatingInput">Alias</label> 71 </div> 72 <div class="form-floating" style="margin-top:10px;"> 73 <input type="password" class="form-control" id="floatingPassword" placeholder=""> 74 <label for="floatingPassword">Password</label> 75 </div> 76 <div class="form-floating"> 77 <input type="password" class="form-control" id="floatingPassword2" placeholder=""> 78 <label for="floatingPassword">Repeat Password</label> 79 </div> 80 <button class="w-100 btn btn-lg btn-primary" type="submit">Create</button> 81 </form> 82 </main> 83 </body> 84 </html>