Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/esp-link/blame/commit/60f47ba8bcd1096335361cd0dff0458dc9ee7382/arduino/libraries/EspLink/examples/EspLinkWebApp/web-page/User.html You should set ROOT_URL correctly, otherwise the web may not work correctly.

25 lines
606 B

<!-- EspLink will add header here -->
<div class="header">
<h1>User setup</h1>
</div>
<div class="content">
<form>
First name:<br/><input name="first_name" type="text"/>
Last name:<br/><input name="last_name" type="text"/>
Age:
<input name="age" type="number"/>
Gender:
<select name="gender">
<option value="female">Female</option>
<option value="male">Male</option>
</select>
<br>
Notifications<input name="notifications" type="checkbox"/>
<br>
<input type="submit">
</form>
</div>
</body></html>