# Is there a URL for just log-in, and another for log-in/sign-up?

**URL:** https://meta.discourse.org/t/is-there-a-url-for-just-log-in-and-another-for-log-in-sign-up/128796
**Category:** Support
**Created:** [17 september 2019 om 15:42 UTC](https://meta.discourse.org/t/is-there-a-url-for-just-log-in-and-another-for-log-in-sign-up/128796 "2019-09-17T15:42:22Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![waffleslop](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/waffleslop/32/244974_2.png) [@waffleslop](https://meta.discourse.org/u/waffleslop)
#### Post date: [17 september 2019 om 15:42 UTC](https://meta.discourse.org/t/is-there-a-url-for-just-log-in-and-another-for-log-in-sign-up/128796/1 "2019-09-17T15:42:22Z")

</div>

I’d like to have 2 URLs available:

- Login
- Login & Sign-up

Is this possible? The use-case is for the iOS single site app I’m building. I want people to only be able to log-in via the app, and able to sign-up outside the app.

---

<div class="post-metadata">

### Author: ![awesomerobot](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/awesomerobot/32/142900_2.png) [@awesomerobot](https://meta.discourse.org/u/awesomerobot)
#### Post date: [17 september 2019 om 15:56 UTC](https://meta.discourse.org/t/is-there-a-url-for-just-log-in-and-another-for-log-in-sign-up/128796/2 "2019-09-17T15:56:26Z")

</div>

`https://community.examplesite.com/signup` and `https://community.examplesite.com/login` will work to trigger the pop-up, or are you looking for a separate full-page login/signup (those don’t exist at the moment)

---

<div class="post-metadata">

### Author: ![waffleslop](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/waffleslop/32/244974_2.png) [@waffleslop](https://meta.discourse.org/u/waffleslop)
#### Post date: [17 september 2019 om 18:00 UTC](https://meta.discourse.org/t/is-there-a-url-for-just-log-in-and-another-for-log-in-sign-up/128796/3 "2019-09-17T18:00:21Z")

</div>

/login has a sign-up button. I do not want this. Can I hide it with CSS?

---

<div class="post-metadata">

### Author: ![awesomerobot](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/awesomerobot/32/142900_2.png) [@awesomerobot](https://meta.discourse.org/u/awesomerobot)
#### Post date: [17 september 2019 om 18:11 UTC](https://meta.discourse.org/t/is-there-a-url-for-just-log-in-and-another-for-log-in-sign-up/128796/4 "2019-09-17T18:11:23Z")

</div>

Yes, this works

```css
.login-modal #new-account-link {
    display: none;
}

```

One option is to detect the app’s user-agent with JS and add an app-specific class to the html tag… then you could only apply that CSS to the app (I’m sure there are other ways to approach it too).

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [17 oktober 2019 om 18:11 UTC](https://meta.discourse.org/t/is-there-a-url-for-just-log-in-and-another-for-log-in-sign-up/128796/5 "2019-10-17T18:11:32Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
