Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauriciofauth@gmail.com>2018-12-19 05:12:54 +0300
committerMaurício Meneghini Fauth <mauriciofauth@gmail.com>2018-12-19 05:12:54 +0300
commit9eba565bf44b93dea2ec92392aebca95a185f6c4 (patch)
tree6573991ba983fb36dd9844bf82d7db5ca4482324 /examples
parent02049de4c44d445042fbabc2a801ef2017173b5c (diff)
Remove unnecessary HTML closing tags
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/openid.php10
-rw-r--r--examples/signon.php16
2 files changed, 13 insertions, 13 deletions
diff --git a/examples/openid.php b/examples/openid.php
index 1c93c204b5..641d441078 100644
--- a/examples/openid.php
+++ b/examples/openid.php
@@ -49,9 +49,9 @@ function Show_page($contents)
<!DOCTYPE HTML>
<html lang="en" dir="ltr">
<head>
- <link rel="icon" href="../favicon.ico" type="image/x-icon" />
- <link rel="shortcut icon" href="../favicon.ico" type="image/x-icon" />
- <meta charset="utf-8" />
+ <link rel="icon" href="../favicon.ico" type="image/x-icon">
+ <link rel="shortcut icon" href="../favicon.ico" type="image/x-icon">
+ <meta charset="utf-8">
<title>phpMyAdmin OpenID signon example</title>
</head>
<body>
@@ -109,8 +109,8 @@ $returnTo .= 'openid.php';
if (!count($_GET) && !count($_POST) || isset($_GET['phpMyAdmin'])) {
/* Show simple form */
$content = '<form action="openid.php" method="post">
-OpenID: <input type="text" name="identifier" /><br />
-<input type="submit" name="start" />
+OpenID: <input type="text" name="identifier"><br>
+<input type="submit" name="start">
</form>
</body>
</html>';
diff --git a/examples/signon.php b/examples/signon.php
index b1e95207f9..73f26fe823 100644
--- a/examples/signon.php
+++ b/examples/signon.php
@@ -47,9 +47,9 @@ if (isset($_POST['user'])) {
<!DOCTYPE HTML>
<html lang="en" dir="ltr">
<head>
- <link rel="icon" href="../favicon.ico" type="image/x-icon" />
- <link rel="shortcut icon" href="../favicon.ico" type="image/x-icon" />
- <meta charset="utf-8" />
+ <link rel="icon" href="../favicon.ico" type="image/x-icon">
+ <link rel="shortcut icon" href="../favicon.ico" type="image/x-icon">
+ <meta charset="utf-8">
<title>phpMyAdmin single signon example</title>
</head>
<body>
@@ -61,13 +61,13 @@ if (isset($_POST['user'])) {
}
?>
<form action="signon.php" method="post">
- Username: <input type="text" name="user" /><br />
- Password: <input type="password" name="password" /><br />
+ Username: <input type="text" name="user"><br>
+ Password: <input type="password" name="password"><br>
Host: (will use the one from config.inc.php by default)
- <input type="text" name="host" /><br />
+ <input type="text" name="host"><br>
Port: (will use the one from config.inc.php by default)
- <input type="text" name="port" /><br />
- <input type="submit" />
+ <input type="text" name="port"><br>
+ <input type="submit">
</form>
</body>
</html>