Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Login</title>
<style type="text/css">
#loginbox
{
width:20em;
margin:0 auto;
}
#loginbox table
{
text-align:left;
}
#loginbox h1
{
text-align:center;
}
#loginbox #tableRowPasswordLost
{
font-size:0.9em;
font-family:monospace;
text-align:right;
}
#loginbox #tableRowSubmitButton
{
text-align:center;
}
#loginbox #tableRowSubmitButton td input
{
font-size:1.3em;
}
</style>
</head>
<body>
<div id="loginbox">
<h1>Login</h1>
<hr />
<form action="yourscript.php" method="post">
<table>
<tr>
<th>Benutzername:</th>
<td><input type="text" name="username" /></td>
</tr>
<tr>
<th>Passwort:</th>
<td><input type="password" name="password" /></td>
</tr>
<tr id="tableRowPasswordLost">
<td colspan="2"><a href="http://www.google.de">Benutzername vergessen</a> • <a href="http://www.google.de">Passwort vergessen</a></td>
</tr>
<tr id="tableRowSubmitButton">
<td colspan="2"><input type="submit" value="Login" name="submit" /></td>
</tr>
</table>
</form>
</div>
</body>
</html>
XHTML ist im Prinzip HTML, nur strikter!perle93 hat gesagt.:Wenn ich das nun alles mit meinem Laienwissen verstanden habe, kann ich es so einbinden. Es sind zwei "Sprachen", die unterschiedlich auf den Browsern angewendet werden können.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Login</title>
<style type="text/css">
#loginbox
{
width:20em;
margin:0 auto;
}
#loginbox table
{
text-align:left;
}
#loginbox h1
{
text-align:center;
}
#loginbox #tableRowPasswordLost
{
font-size:0.9em;
font-family:monospace;
text-align:right;
}
#loginbox #tableRowSubmitButton
{
text-align:center;
}
#loginbox #tableRowSubmitButton td input
{
font-size:1.3em;
}
</style>
</head>
<body>
<div id="loginbox">
<h1>Login</h1>
<hr>
<form action="yourscript.php" method="post">
<table>
<tr>
<th>Benutzername:</th>
<td><input type="text" name="username"></td>
</tr>
<tr>
<th>Passwort:</th>
<td><input type="password" name="password"></td>
</tr>
<tr id="tableRowPasswordLost">
<td colspan="2"><a href="http://www.google.de">Benutzername vergessen</a> • <a href="http://www.google.de">Passwort vergessen</a></td>
</tr>
<tr id="tableRowSubmitButton">
<td colspan="2"><input type="submit" value="Login" name="submit"></td>
</tr>
</table>
</form>
</div>
</body>
</html>
CREATE TABLE users (id INTEGER PRIMARY KEY AUTO_INCREMENT,
username VARCHAR(20) NOT NULL,
pw VARCHAR(40) NOT NULL,
registerdate INTEGER NOT NULL DEFAULT NOW()
);
CREATE TABLE logins (id INTEGER PRIMARY KEY AUTO_INCREMENT,
userid INTEGER,
logindate INTEGER NOT NULL DEFAULT NOW(),
ip VARCHAR(15),
success TINYINT NOT NULL DEFAULT 1
);