Skip to content
Snippets Groups Projects
Commit c64c565c authored by Oliver Green's avatar Oliver Green
Browse files

welcome page without css

parent a3cd3f32
No related branches found
No related tags found
No related merge requests found
...@@ -5,5 +5,5 @@ window.onload = function() { ...@@ -5,5 +5,5 @@ window.onload = function() {
// code that is executed as the page is loaded. // code that is executed as the page is loaded.
// You shall put your own custom code here. // You shall put your own custom code here.
// window alert() is not allowed to be used in your implementation. // window alert() is not allowed to be used in your implementation.
window.alert("Hello TDDD97!"); //window.alert("Hello TDDD97!");
}; };
\ No newline at end of file
<html>
<head>
<link href="client.css" type="text/css" rel="stylesheet">
<script src="client.js" type="text/javascript"></script>
<script src="serverstub.js" type="text/javascript"></script>
</head>
<body>
<img src="wimage.png" alt="logo and slogan">
<div style="background-color:cyan">
<form>
<label for="email">Email</label>
<input type="text" id="email" name="email"><br>
<label for="password">Password</label>
<input type="text" id="password" name="password"><br>
</form>
</div>
<div style="background-color:magenta">
<h2>Sign up here</h2>
<form>
<label for="fname">First name</label>
<input type="text" id="fname" name="fname"><br>
<label for="lname">Family name</label>
<input type="text" id="lname" name="lname"><br>
<!--
Gender selection
-->
<label for="gender">Gender</label>
<select id="gender" name="gender">
<option value="male">Male</option>
<option value="female">Female</option>
<option value="other">Other</option>
</select><br>
<label for="city">City</label>
<input type="text" id="city" name="city"><br>
<label for="country">Country</label>
<input type="text" id="country" name="country"><br>
<label for="email">Email</label>
<input type="text" id="email" name="email"><br>
<label for="password">Password</label>
<input type="text" id="password" name="password"><br>
<label for="password2">Repeat PSW</label>
<input type="text" id="password2" name="password2"><br>
<input type="submit" value="Sign Up">
</form>
</div>
</body>
</html>
\ No newline at end of file
wimage.png

14 KiB

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