# Custom login page

**URL:** https://forum.gitea.com/t/custom-login-page/4617
**Category:** Install/Maintain/Configure
**Created:** [February 9, 2022, 11:16am UTC](https://forum.gitea.com/t/custom-login-page/4617 "2022-02-09T11:16:42Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![artu72](https://avatars.discourse-cdn.com/v4/letter/a/57b2e6/32.png) [@artu72](https://forum.gitea.com/u/artu72)
#### Post date: [February 9, 2022, 11:16am UTC](https://forum.gitea.com/t/custom-login-page/4617/1 "2022-02-09T11:16:43Z")

</div>

I would like to custom standard login page, i.e. /user/login

So, I looked for a login.tmpl file in the folder gitea:/template/users ([https://github.com/go-gitea/gitea/tree/main/templates/user](https://github.com/go-gitea/gitea/tree/main/templates/user)), but I cannot find it.

Perhaps are I am wrong?

---

<div class="post-metadata">

### Author: ![chrish](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.gitea.com/chrish/32/2570_2.png) [@chrish](https://forum.gitea.com/u/chrish)
#### Post date: [April 19, 2022, 2:07am UTC](https://forum.gitea.com/t/custom-login-page/4617/2 "2022-04-19T02:07:30Z")

</div>

Have you execute the following command on your system?

```auto
$ gitea embedded list

```

I usually run the above as git user. Plus to make it easier I pipe the above command to grep. As an example.

```auto
$ gitea embedded list | grep 'login'

```

The output for me was:

```auto
templates/user/auth/prohibit_login.tmpl

```
