# How to change the look&feel of the user confirmation webpage

**URL:** https://community.dreamfactory.com/t/how-to-change-the-look-feel-of-the-user-confirmation-webpage/1347
**Category:** Users & Roles
**Created:** [August 6, 2015, 8:31pm UTC](https://community.dreamfactory.com/t/how-to-change-the-look-feel-of-the-user-confirmation-webpage/1347 "2015-08-06T20:31:17Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![jeffreystables](https://yyz1.discourse-cdn.com/flex035/user_avatar/community.dreamfactory.com/jeffreystables/32/173_2.png) [@jeffreystables](https://community.dreamfactory.com/u/jeffreystables)
#### Post date: [August 13, 2015, 12:25am UTC](https://community.dreamfactory.com/t/how-to-change-the-look-feel-of-the-user-confirmation-webpage/1347/2 "2015-08-13T00:25:18Z")

</div>

As mentioned in [the admin app readme](https://github.com/dreamfactorysoftware/admin2#admin2), the UI is fully skinnable with [Bootswatch](https://bootswatch.com/). [This section of the readme](https://github.com/dreamfactorysoftware/admin2#theme-admin-app-2) outlines how to apply a new Bootswatch theme.

All of the web assets used in serving up the DreamFactory admin console, as well as the user registration and confirmation screen, are found in the `/platform/web` directory wherever you installed your instance. They are all open source and freely editable. You may find [browsing the content on our GitHub repository](https://github.com/dreamfactorysoftware/dsp-core/tree/master/web) useful if you are having trouble exploring the details in your own filesystem.

For instance, [here is the user confirmation page](https://github.com/dreamfactorysoftware/dsp-core/blob/master/web/confirm_invite.html) you would edit to your liking.

You may also change the URL path by editing `/platform/config/constants.config.php`.

Near the end of the file,

```
const DEFAULT_ADMIN_APP_PATH = '/dreamfactory/dist';

```

If you want to change this to, for example, `/myapp` just edit this value:

```
const DEFAULT_ADMIN_APP_PATH = '/myapp';

```

Then copy the dist folder to the root of the `/web` folder so the filesystem reflects the new path:

```
cp -r web/dreamfactory/dist web/myapp

```

You may need to restart Apache and/or clear your DreamFactory platform cache (`rm -rf /platform/storage/.private/.cache`) to ensure the new configuration takes effect.

---

_[View the full topic](https://community.dreamfactory.com/t/how-to-change-the-look-feel-of-the-user-confirmation-webpage/1347)._
