28 lines
548 B
Plaintext
28 lines
548 B
Plaintext
## -*- coding: utf-8 -*-
|
|
<%!
|
|
import os
|
|
import json
|
|
import cherrypy
|
|
%>
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Passwort erforderlich</title>
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Bitte authentifizieren Sie sich:</h1>
|
|
</header>
|
|
<section>
|
|
<form action="edit_form" method="POST">
|
|
Passwort:<input type="password" name="password">
|
|
<input type="hidden" name="ID" value="${ID}">
|
|
<input type="submit" value="Bestätigen">
|
|
</form>
|
|
</section>
|
|
</body>
|
|
</html>
|