Skip to content
Snippets Groups Projects
Commit 3f61e860 authored by Gustav Elmqvist's avatar Gustav Elmqvist
Browse files

minor css change

parent 97fc6636
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,10 @@
margin-top: 100px;
}
.welcome img {
mix-blend-mode: color-burn;
}
.form-elements {
display: flex;
flex-direction: column;
......
......@@ -9,6 +9,7 @@
<img src="wimage.png" alt="logo and slogan">
<div class="form-elements" id="login">
<form id="loginform" onsubmit="return inputValidation()">
<h2>Login</h2>
<div class="form-input">
<label for="email">Email</label>
<input type="text" id="email" name="email" size="18">
......
......@@ -11,11 +11,11 @@
<form>
<div class="form-input">
<label for="email">Email</label>
<input type="text" id="email" name="email" size="18">
<input type="text" id="email" name="email" size="18" required>
</div>
<div class="form-input">
<label for="password">Password</label>
<input type="text" id="password" name="password" size="18">
<input type="text" id="password" name="password" size="18" required>
</div>
<input type="submit" value="Login">
</form>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment