Files
archived-sslocal-manager-al…/templates/index.html
T
2025-05-19 16:36:43 +08:00

20 lines
583 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>ss-local Manager</title>
</head>
<body>
{% if running %}
<h1 style="color: green;">Running With PID {{ pid }}</h1>
<form method="post" action="/action">
<button type="submit" style="background-color: #ff4444; color: white;">Stop</button>
</form>
{% else %}
<h1 style="color: red;">Not Running</h1>
<form method="post" action="/action">
<button type="submit" style="background-color: #00C851; color: white;">Start</button>
</form>
{% endif %}
</body>
</html>