Working now

This commit is contained in:
Kasper Rynning-Tønnesen
2020-01-20 16:07:40 +01:00
parent 53e54726ca
commit 51c2ee2a0e
29 changed files with 11278 additions and 63 deletions

View File

@@ -0,0 +1,54 @@
<template>
<div class="outer">
<div>
<h2>Vinlottis</h2>
<form method="post" action="/login">
<input type="text" name="username" placeholder="Brukernavn" />
<input type="password" name="password" placeholder="Passord" />
<input type="submit" value="login" />
</form>
</div>
</div>
</template>
<script>
export default {};
</script>
<style lang="scss" scoped>
div {
font-family: sans-serif;
}
.outer {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vw;
}
h2 {
width: 100vw;
text-align: center;
font-size: 3rem;
}
form {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100vw;
}
input {
margin: 20px;
width: 30vw;
font-size: 3rem;
border: none;
border-bottom: 1px solid black;
}
input[type="submit"] {
border: 1px solid black;
}
</style>