login finished XD

This commit is contained in:
pena 2021-11-05 16:55:19 +01:00 committed by Swrup
parent b1539aaae8
commit 6c64dcfffd
13 changed files with 326 additions and 3 deletions

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,23 @@
body {
padding-top: 3rem;
padding-bottom: 3rem;
color: #5a5a5a;
background-color: #EEEEEE;
line-height: 1.6;
font-size: 18px;
}
.featurette-divider {
margin: 5rem 0;
}
#page-title {
text-align: center;
}
blockquote.blockquote {
border-left: 6px solid #3131e0;
border-radius: 6px;
padding-left: 16px;
background-color: #c0c0f0;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

File diff suppressed because one or more lines are too long

3
src/content/index.md Normal file
View file

@ -0,0 +1,3 @@
# Hello world
<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://www.openstreetmap.org/export/embed.html?bbox=-0.11535644531250001%2C48.09642606004488%2C3.5925292968750004%2C49.47169378524674&amp;layer=mapnik" style="border: 1px solid black"></iframe><br/><small><a href="https://www.openstreetmap.org/#map=9/48.7888/1.7386">Afficher une carte plus grande</a></small>

19
src/content/register.md Normal file
View file

@ -0,0 +1,19 @@
# Register
<form>
<div class="mb-3">
<label for="inputNick" class="form-label">Nick</label>
<input type="text" class="form-control" id="inputNick" aria-describedby="nickHelp">
<div id="nickHelp" class="form-text">Who are u ?</div>
</div>
<div class="mb-3">
<label for="inputEmail" class="form-label">Email address</label>
<input type="email" class="form-control" id="inputEmail" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text">We'll never share your email with anyone else.</div>
</div>
<div class="mb-3">
<label for="inputPassword" class="form-label">Password</label>
<input type="password" class="form-control" id="inputPassword">
</div>
<button type="submit" class="btn btn-primary" formaction="/register">Submit</button>
</form>