Calling auth0 login in href
I'm trying to show a message if the user is not logged in. Please Login here (red color) to continue.
In the render method, I need to check and see if the user is already logged in to not show any message.
I also have a login method that directs user to the login page.
I need to show a button to look like a hyperlinked text because I can't call the this.login
function in a href
. Now there's a big space (because of the button) between "login" and "here". I also need to make "here" red to inform the user that it's clickable.
I tried <div> Please login <a onClick={this.login}>here</a></div>
but it "here" looks like a simple text. No link appears. Only the button can add a link and I don't know the reason.
{!this.props.isAuthed && <div> Please login<Button color="inherit" onClick={this.login}>here</Button></div>}
javascript html reactjs auth0
add a comment |
I'm trying to show a message if the user is not logged in. Please Login here (red color) to continue.
In the render method, I need to check and see if the user is already logged in to not show any message.
I also have a login method that directs user to the login page.
I need to show a button to look like a hyperlinked text because I can't call the this.login
function in a href
. Now there's a big space (because of the button) between "login" and "here". I also need to make "here" red to inform the user that it's clickable.
I tried <div> Please login <a onClick={this.login}>here</a></div>
but it "here" looks like a simple text. No link appears. Only the button can add a link and I don't know the reason.
{!this.props.isAuthed && <div> Please login<Button color="inherit" onClick={this.login}>here</Button></div>}
javascript html reactjs auth0
add a comment |
I'm trying to show a message if the user is not logged in. Please Login here (red color) to continue.
In the render method, I need to check and see if the user is already logged in to not show any message.
I also have a login method that directs user to the login page.
I need to show a button to look like a hyperlinked text because I can't call the this.login
function in a href
. Now there's a big space (because of the button) between "login" and "here". I also need to make "here" red to inform the user that it's clickable.
I tried <div> Please login <a onClick={this.login}>here</a></div>
but it "here" looks like a simple text. No link appears. Only the button can add a link and I don't know the reason.
{!this.props.isAuthed && <div> Please login<Button color="inherit" onClick={this.login}>here</Button></div>}
javascript html reactjs auth0
I'm trying to show a message if the user is not logged in. Please Login here (red color) to continue.
In the render method, I need to check and see if the user is already logged in to not show any message.
I also have a login method that directs user to the login page.
I need to show a button to look like a hyperlinked text because I can't call the this.login
function in a href
. Now there's a big space (because of the button) between "login" and "here". I also need to make "here" red to inform the user that it's clickable.
I tried <div> Please login <a onClick={this.login}>here</a></div>
but it "here" looks like a simple text. No link appears. Only the button can add a link and I don't know the reason.
{!this.props.isAuthed && <div> Please login<Button color="inherit" onClick={this.login}>here</Button></div>}
javascript html reactjs auth0
javascript html reactjs auth0
asked Nov 20 '18 at 17:57
HannaHanna
268417
268417
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Try this:
<div> Please login <a onClick={this.login} href="#">here</a></div>
The reason is: An a
tag without the href
attribute is not rendered like a link by browsers. To mitigate that, we add it with some arbitrary value.
On your onClick
handler - login
in your case - you need to ensure that you prevent the default action - navigating to the relative url #
- from happening:
login = e => {
e.preventDefault();
// your login logic
}
great! It works now without the changing the handler. Can you please explain more about that?
– Hanna
Nov 20 '18 at 18:12
I think I already explained it in detail. Please re-read my answer. If something is still unclear, please specify exactly what
– Daniel Hilgarth
Nov 20 '18 at 18:15
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53398845%2fcalling-auth0-login-in-href%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Try this:
<div> Please login <a onClick={this.login} href="#">here</a></div>
The reason is: An a
tag without the href
attribute is not rendered like a link by browsers. To mitigate that, we add it with some arbitrary value.
On your onClick
handler - login
in your case - you need to ensure that you prevent the default action - navigating to the relative url #
- from happening:
login = e => {
e.preventDefault();
// your login logic
}
great! It works now without the changing the handler. Can you please explain more about that?
– Hanna
Nov 20 '18 at 18:12
I think I already explained it in detail. Please re-read my answer. If something is still unclear, please specify exactly what
– Daniel Hilgarth
Nov 20 '18 at 18:15
add a comment |
Try this:
<div> Please login <a onClick={this.login} href="#">here</a></div>
The reason is: An a
tag without the href
attribute is not rendered like a link by browsers. To mitigate that, we add it with some arbitrary value.
On your onClick
handler - login
in your case - you need to ensure that you prevent the default action - navigating to the relative url #
- from happening:
login = e => {
e.preventDefault();
// your login logic
}
great! It works now without the changing the handler. Can you please explain more about that?
– Hanna
Nov 20 '18 at 18:12
I think I already explained it in detail. Please re-read my answer. If something is still unclear, please specify exactly what
– Daniel Hilgarth
Nov 20 '18 at 18:15
add a comment |
Try this:
<div> Please login <a onClick={this.login} href="#">here</a></div>
The reason is: An a
tag without the href
attribute is not rendered like a link by browsers. To mitigate that, we add it with some arbitrary value.
On your onClick
handler - login
in your case - you need to ensure that you prevent the default action - navigating to the relative url #
- from happening:
login = e => {
e.preventDefault();
// your login logic
}
Try this:
<div> Please login <a onClick={this.login} href="#">here</a></div>
The reason is: An a
tag without the href
attribute is not rendered like a link by browsers. To mitigate that, we add it with some arbitrary value.
On your onClick
handler - login
in your case - you need to ensure that you prevent the default action - navigating to the relative url #
- from happening:
login = e => {
e.preventDefault();
// your login logic
}
edited Nov 20 '18 at 18:15
answered Nov 20 '18 at 18:03
Daniel HilgarthDaniel Hilgarth
138k32247355
138k32247355
great! It works now without the changing the handler. Can you please explain more about that?
– Hanna
Nov 20 '18 at 18:12
I think I already explained it in detail. Please re-read my answer. If something is still unclear, please specify exactly what
– Daniel Hilgarth
Nov 20 '18 at 18:15
add a comment |
great! It works now without the changing the handler. Can you please explain more about that?
– Hanna
Nov 20 '18 at 18:12
I think I already explained it in detail. Please re-read my answer. If something is still unclear, please specify exactly what
– Daniel Hilgarth
Nov 20 '18 at 18:15
great! It works now without the changing the handler. Can you please explain more about that?
– Hanna
Nov 20 '18 at 18:12
great! It works now without the changing the handler. Can you please explain more about that?
– Hanna
Nov 20 '18 at 18:12
I think I already explained it in detail. Please re-read my answer. If something is still unclear, please specify exactly what
– Daniel Hilgarth
Nov 20 '18 at 18:15
I think I already explained it in detail. Please re-read my answer. If something is still unclear, please specify exactly what
– Daniel Hilgarth
Nov 20 '18 at 18:15
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53398845%2fcalling-auth0-login-in-href%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown