diff options
author | VirtualTam <virtualtam@flibidi.org> | 2015-01-20 02:35:52 +0100 |
---|---|---|
committer | VirtualTam <virtualtam@flibidi.org> | 2015-01-20 02:53:53 +0100 |
commit | 04751e044170c1dbc13fa51ee4ea9234ab541ab9 (patch) | |
tree | 09289e84bff2cb74680e3bd161615d655f653692 /tpl/install.html | |
parent | 486f25a5f4ab2a9191618edcb89ebb61350ff600 (diff) | |
download | Shaarli-04751e044170c1dbc13fa51ee4ea9234ab541ab9.tar.gz Shaarli-04751e044170c1dbc13fa51ee4ea9234ab541ab9.tar.zst Shaarli-04751e044170c1dbc13fa51ee4ea9234ab541ab9.zip |
w3c: fix HTML syntax errors
Fixes #64
All pages:
- add `urlencode` when passing the version to a custom stylesheet;
- set meaningful values of `alt` and `title` for QR-Code images.
Install page:
- the form's `action` attribute must be non-empty;
- the `valign` attribute is deprecated.
Signed-off-by: VirtualTam <virtualtam@flibidi.org>
Diffstat (limited to 'tpl/install.html')
-rw-r--r-- | tpl/install.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tpl/install.html b/tpl/install.html index 32b8811b..df42bf6d 100644 --- a/tpl/install.html +++ b/tpl/install.html | |||
@@ -5,7 +5,7 @@ | |||
5 | <div id="install"> | 5 | <div id="install"> |
6 | <h1>Shaarli</h1> | 6 | <h1>Shaarli</h1> |
7 | It looks like it's the first time you run Shaarli. Please configure it:<br> | 7 | It looks like it's the first time you run Shaarli. Please configure it:<br> |
8 | <form method="POST" action="" name="installform" id="installform"> | 8 | <form method="POST" action="#" name="installform" id="installform"> |
9 | <table> | 9 | <table> |
10 | <tr><td><b>Login:</b></td><td><input type="text" name="setlogin" size="30"></td></tr> | 10 | <tr><td><b>Login:</b></td><td><input type="text" name="setlogin" size="30"></td></tr> |
11 | <tr><td><b>Password:</b></td><td><input type="password" name="setpassword" size="30"></td></tr> | 11 | <tr><td><b>Password:</b></td><td><input type="password" name="setpassword" size="30"></td></tr> |