23 lines
747 B
HTML
23 lines
747 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head>
|
|
<body>
|
|
<fieldset>
|
|
<legend>Redirect configuration</legend>
|
|
<input type="checkbox" id="enabled" class="control"><label for="enabled">Enable redirect</label><br>
|
|
<label for="instance">Nitter domain</label><br>
|
|
<input type="text" id="instance" class="control">
|
|
</fieldset>
|
|
<fieldset>
|
|
<legend>Authentication</legend>
|
|
<label for="username">Username</label><br>
|
|
<input type="text" id="username" class="control"><br>
|
|
<label for="password">Password</label><br>
|
|
<input type="password" id="password" class="control"><br>
|
|
</fieldset>
|
|
<script src="dialog.js"></script>
|
|
</body>
|
|
</html>
|