New tests

This commit is contained in:
Stian Lund
2022-06-13 11:46:09 +02:00
parent 0a6f00ffb2
commit 778754c0b3
4 changed files with 41 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<body>
<script>document.write("Hello World!");</script>
<br>
<button type="button" onclick='document.getElementById("demo").innerHTML = "Hello JavaScript!"'>Click Me!</button>
<p id="demo"></p>
</body>
</html>
+13
View File
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>HTML Test Page</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="icon" href="../favicon.ico" sizes="32x32">
<link rel="stylesheet" type="text/css" media="screen, projection" href="style.css">
</head>
<body>
<p>Login successful!<br>
</form>
</body>
</html>
+19
View File
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<title>HTML Test Page</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="icon" href="../favicon.ico" sizes="32x32">
<link rel="stylesheet" type="text/css" media="screen, projection" href="style.css">
</head>
<body>
<form name="LoginForm" action="test-login-success.html" method="get">
<p>User name:<br>
<input name="user" type="text" size="24" id="LoginFormUser"></p>
<p>Password:<br>
<input name="pwd" type="password" size="24"></p>
<p><input type="submit" value=" Submit ">
<input type="reset" value=" Reset "></p>
</form>
</body>
</html>
View File