WEB/Sammlung/web_p4/content/password_form.txt
darthsandmann c9f3117da1 Sammlung
2016-10-16 21:53:15 +02:00

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>