# Add custom 'Login' Link to Invite Acceptance

**URL:** https://meta.discourse.org/t/add-custom-login-link-to-invite-acceptance/247024
**Category:** Development
**Tags:** invites
**Created:** [November 28, 2022, 2:19pm UTC](https://meta.discourse.org/t/add-custom-login-link-to-invite-acceptance/247024 "2022-11-28T14:19:28Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![Don](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/don/32/228726_2.png) [@Don](https://meta.discourse.org/u/Don)
#### Post date: [November 28, 2022, 5:10pm UTC](https://meta.discourse.org/t/add-custom-login-link-to-invite-acceptance/247024/2 "2022-11-28T17:10:50Z")

</div>

Hello,

Probably the easiest way to achieve this, adding some css. This way you don’t need to modify the invite page template.

Add the following to a theme component Common / CSS section.

 ![Screenshot 2022-11-28 at 18.32.31](https://global.discourse-cdn.com/meta/original/4X/1/e/2/1e25ec4dcb931389850464721aecbc857bf56e81.png)

```scss
body.invite-page {
  .invites-show {
    .login-welcome-header {
      gap: 3em 0;
    }
    .invitation-cta__info {
      position: absolute;
      top: -6em;
      left: 0;
    }
  }
}

```

 ![Screenshot 2022-11-28 at 18.06.09](https://global.discourse-cdn.com/meta/original/4X/9/1/6/916133619c8afa7c841e9f108186f2608757f4b0.png)

---

_[View the full topic](https://meta.discourse.org/t/add-custom-login-link-to-invite-acceptance/247024)._
