Skip to content

Instantly share code, notes, and snippets.

@jpluimers
Created May 29, 2021 10:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jpluimers/88b523eefb5879bf0b6b97632f21814c to your computer and use it in GitHub Desktop.
Save jpluimers/88b523eefb5879bf0b6b97632f21814c to your computer and use it in GitHub Desktop.
The logon html form fields (password, button) for Fritz!Box
<form method="post" action="index.lua" id="loginForm" class="loginForm">
<div class="formular">
<p>Please log in using your password.</p>
<label for="uiPass">Password</label>
<input type="password" tabindex="2" id="uiPass" name="uiPass">
<div id="uiLoginError" class="hidden">
<p class="error_text">Login failed.</p>
<p class="error_text">Did you make a typing error, or do you not have the right to access this area?</p>
<p id="uiWait" class="error_text"></p>
</div>
</div>
<div class="btn_form_foot">
<input type="hidden" name="response" id="uiResp" value="">
<input type="hidden" name="lp" value="">
<input type="hidden" name="username" id="username" value="">
<button type="submit" tabindex="3" id="submitLoginBtn">Log In</button>
<a>Forgot your password?</a>
</div>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment