mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-21 11:22:50 +00:00
49 lines
1.6 KiB
HTML
49 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
|
|
<meta http-equiv="Pragma" content="no-cache">
|
|
<meta http-equiv="Expires" content="0">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<link rel="shortcut icon" href="/images/splash.jpg" type="image/x-icon">
|
|
<link rel="stylesheet" type="text/css" href="/css/bootstrap.min.css">
|
|
<link rel="stylesheet" type="text/css" href="/css/captive-portal.css">
|
|
<title>uCentral - Captive Portal</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root">
|
|
<div class="portal flex-column align-items-center">
|
|
<div class="container">
|
|
<div class="justify-content-center row">
|
|
<div class="col-md-8">
|
|
<img class="c-sidebar-brand-full" src="/images/OpenWiFi_LogoLockup_DarkGreyColour.svg" alt="OpenWifi" style="padding-left: 17%; width: 85%;">
|
|
<div class="card">
|
|
<div class="card-header">uCentral - Captive Portal</div>
|
|
<div class="card-body">
|
|
<form action="/hotspot" method="POST">
|
|
<table>
|
|
<tr>
|
|
<td><label for="fname">Username:</label></td>
|
|
<td><input type="text" name="username"></td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for="fname">Password:</label></td>
|
|
<td><input type="password" name="password"></td>
|
|
</tr>
|
|
</table>
|
|
<input type="hidden" name="action" value="credentials">
|
|
<input type="submit" value="Login" class="btn btn-primary btn-block">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|