UNPKG

rower-website

Version:

A web server which access the PM5 rowing machine over usb and displays the wattage value.

27 lines (22 loc) 819 B
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Index Page</title> <link rel="stylesheet" type="text/css" href="/css/styles.css"> </head> <body> <h1>What home appliance can you power?</h1> <form action="/submit" method="post"> <label for="name">Name:</label> <input type="text" id="name" name="name" required><br><br> <label for="company">Company:</label> <input type="text" id="company" name="company" required><br><br> <label for="email">Email:</label> <input type="email" id="email" name="email" required><br><br> <label for="phone">Phone:</label> <input type="tel" id="phone" name="phone" required><br><br> <button type="submit">Submit</button> </form> </body> </html>