mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
20 lines
614 B
HTML
20 lines
614 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Import Users</title>
|
|
</head>
|
|
<body>
|
|
<h1>Import Users</h1>
|
|
<form action="/import/users/" method="post">
|
|
<label for="server">Server IP/Domain:</label><br>
|
|
<input type="text" id="server" name="server"><br>
|
|
<label for="username">Username:</label><br>
|
|
<input type="text" id="username" name="username"><br>
|
|
<label for="password">Password:</label><br>
|
|
<input type="password" id="password" name="password"><br><br>
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
</body>
|
|
</html>
|