From 3f61e860c42ba7bcc0df358d481b01ff24d04c3e Mon Sep 17 00:00:00 2001
From: Gustav <gusel725@student.liu.se>
Date: Fri, 27 Jan 2023 11:24:18 +0100
Subject: [PATCH] minor css change

---
 client.css   | 4 ++++
 client.html  | 1 +
 welcome.html | 4 ++--
 3 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/client.css b/client.css
index 14e6e60..37efd4c 100644
--- a/client.css
+++ b/client.css
@@ -5,6 +5,10 @@
 	margin-top: 100px;
 }
 
+.welcome img {
+	mix-blend-mode: color-burn;
+}
+
 .form-elements {
 	display: flex;
 	flex-direction: column;
diff --git a/client.html b/client.html
index a799d1f..2d0daab 100644
--- a/client.html
+++ b/client.html
@@ -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">
diff --git a/welcome.html b/welcome.html
index 6031eaa..f5f2727 100644
--- a/welcome.html
+++ b/welcome.html
@@ -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>
-- 
GitLab