Closed
Bug 1305671
Opened 9 years ago
Closed 9 years ago
Bogus </a> after GitHub sign-in button
Categories
(bugzilla.mozilla.org :: Extensions, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: jwkbugzilla, Assigned: dkl)
Details
From extensions/GitHubAuth/template/en/default/hook/account/auth/login-small-additional_methods.html.tmpl:
> <input type="image" src="extensions/GitHubAuth/web/images/sign_in.png" height="22" width="75" align="absmiddle"
> alt="Sign in with GitHub"
> title="Sign in with GitHub"></a> or
The closing </a> tag is bogus here - there is no link to be closed. This code can be seen on https://bugzilla.mozilla.org/ when you are not logged in for example.
The HTML code in extensions/GitHubAuth/template/en/default/hook/account/auth/login-additional_methods.html.tmpl is also invalid by the way:
> <p>
> <form method="post" action="[% urlbase FILTER html %]github.cgi">
> ...
> </form>
> </p>
<form> is a block level element and cannot be placed inside a paragraph. So the browser auto-closes the opening <p>, leaving the closing </p> dangling. This code can be seen on https://bugzilla.mozilla.org/enter_bug.cgi when not logged in.
Assignee | ||
Updated•9 years ago
|
Assignee: nobody → dkl
Status: NEW → ASSIGNED
Assignee | ||
Comment 1•9 years ago
|
||
To https://github.com/mozilla-bteam/bmo.git
4ac7c1e..381c4dd master -> master
Status: ASSIGNED → RESOLVED
Closed: 9 years ago
Resolution: --- → FIXED
Updated•6 years ago
|
Component: Extensions: GitHubAuth → Extensions
You need to log in
before you can comment on or make changes to this bug.
Description
•