|
5 | 5 | <link rel="stylesheet" href="stylesheets/style.css"/> |
6 | 6 | </head> |
7 | 7 | <body> |
8 | | - <hr class="lightgrey"></hr> |
| 8 | + <hr class = "lightgrey" /> |
9 | 9 | <h1>TcpRangeCounter Client</h1> |
10 | 10 | <section id="inputSection"> |
11 | 11 | <form method=post action=sendEvent> |
12 | | - <H3>Select the Event Type</H3> |
| 12 | + </br></br> |
| 13 | + <label>Select the Event Type:</label> |
13 | 14 | <select id=selection name = "eventType"> |
14 | 15 | <option value="max">max</option> |
15 | 16 | <option value="min">min</option> |
16 | 17 | <option value="delta">delta</option> |
17 | 18 | <option value="resume">resume</option> |
18 | | - </select> |
19 | | - <H3>Enter the Argument associated with the selected Event</H3> |
20 | | - <input id=arg type="number" name="arg" size="10" required/> |
21 | | - <br><br> |
22 | | - <input type=submit value='submit' name=submit> |
| 19 | + </select></br></br> |
| 20 | + <label>Enter the Argument associated with the selected Event:</label> |
| 21 | + <input id=arg type="number" name="arg" size="10" required/></br></br> |
| 22 | + <hr class = "lightgrey" /> |
| 23 | + <label>Enter the Hostname that the RangeCounter is running on:</label> |
| 24 | + <input id=hostname type="text" name="hostname" size="20" value = "127.0.0.1" required/></br></br> |
| 25 | + <label>Enter the Port that the RangeCounter is listening on:</label> |
| 26 | + <input id=port type="number" name="port" size="10" value = "12345" required/></br></br> |
| 27 | + <hr class = "lightgrey" /> |
| 28 | + <input type=submit value='submit' name=submit> |
23 | 29 | </form> |
24 | 30 | <ul> |
25 | 31 | <li>This sample implements a counter that starts at a min value and increments until it reaches a max value.</li> |
|
0 commit comments