-
Gustav Elmqvist authoredGustav Elmqvist authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
welcome.html 2.49 KiB
<html>
<head>
<link href="welcome.css" type="text/css" rel="stylesheet">
<script src="client.js" type="text/javascript"></script>
<script src="serverstub.js" type="text/javascript"></script>
</head>
<body>
<div class="welcome">
<img src="wimage.png" alt="logo and slogan">
<div class="form-elements" id="login">
<form>
<div class="form-input">
<label for="email">Email</label>
<input type="text" id="email" name="email">
</div>
<div class="form-input">
<label for="password">Password</label>
<input type="text" id="password" name="password">
</div>
<input type="submit" value="Login">
</form>
<h2>Sign up here</h2>
<form>
<div class="form-input">
<label for="fname">First name</label>
<input type="text" id="fname" name="fname"><br>
</div>
<div class="form-input">
<label for="lname">Family name</label>
<input type="text" id="lname" name="lname"><br>
</div>
<div class="form-input">
<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>
</div>
<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>
</div>
</body>
</html>