Skip to content
Permalink
24008cbad6
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
32 lines (31 sloc) 1.05 KB
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Home Page</title>
<meta name="description" content="form to add new books">
<meta name="author" content="Mark Tyers">
<link href="style.css" type="text/css" rel="stylesheet" />
</head>
<body>
<h1>Lights Page</h1>
<p>here you will be able to turn on or off lights.</p>
<form action="/FrontLightON" method="get">
<p><input type="submit" value="Turn front Light on"></p>
</form>
<form action="/FrontLightOFF" method="get">
<p><input type="submit" value="Turn front Light off"></p>
</form>
<form action="/InsideLightON" method="get">
<p><input type="submit" value="Turn Inside Light on"></p>
</form>
<form action="/InsideLightOFF" method="get">
<p><input type="submit" value="Turn Inside Light off"></p>
</form>
<form action="/MontionSensor" method="post">
<p>Set Sensor:<br /><input type="text" name="Sensor" placeholder="value" autofocus></p>
<p><input type="submit" value="submit value"></p>
</form>
<p><a href="/">back home</a></p>
</body>
</html>