- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2019 08:23 AM
[cid:image001.png@01D563D3.FEE99D70]
Once you click on Guest Access, it takes you to the screen below to confirm your selection and register the guest with ISE.
[cid:image002.png@01D563D3.FEE99D70]
The next screen is to confirm account registered with ISE and to have the guest accept the AUP.
[cid:image003.png@01D563D3.FEE99D70]
Once the AUP is accepted, the guest will click on the Sign On button.
[cid:image004.png@01D563D3.FEE99D70]
Once the sign on is completed, the guest is presented with the final screen indicating they now have Internet access (for 24 hours).
[cid:image005.png@01D563D3.FEE99D70]
The reason I need this is to simplify the process for guests to connect to the Internet when they are at our office. We are not concerned with whether or not they know the username and password. If they disconnect they will just go through this process again and reconnect. It also allows us to keep the employee login on the same portal (they authenticate through AD and their registration is good for one year so that they can auto-connect each time they come into the office without having to go through these screens to re-authenticate each time).
Solved! Go to Solution.
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2019 12:15 PM
did you try this example? listed off http://cs.co/ise-guest
https://community.cisco.com/t5/identity-services-engine-ise/ise-credentialed-guest-portal-hide-username-in-login-box/m-p/3510733
For the self-reg success screen you can uncheck the boxes for the username password being displayed under that pages settings.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2019 06:52 AM
Try this out for the Self-reg success page:
Please try the below script in Self-Registration Success page > Optional Content 2.
<script> $(document).on("pageshow", function(){ $('.ui_self_reg_results_username_label').remove(); $('.ui_self_reg_results_password_label').remove(); }); </script>
In the same page right side top corner, username is displayed. If it is required to remove that as well, then please use the below script.
<script> $(document).on("pageshow", function(){ $('.ui_self_reg_results_username_label').remove(); $('.ui_self_reg_results_password_label').remove(); $('.ui-btn-right').remove(); }); </script>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2019 11:23 AM
Do you have the code I would need to put in the Optional Content 2 box to hide the Username and Password prompts along with the values for each? This is on the Self-Registration Success Page on the Self-Registered Guest Portal. These two fields are minimally required in order to save the portal after editing and I do not need to have them displayed on the page.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2019 12:18 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2019 12:35 PM
I attached the screen flow in a Word doc to this post. I did check the options under http://cs.co/ise-guest and could not find one that shows me how to not display text strings and/or variables on pages.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2019 08:23 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2019 08:30 AM
I updated the Word doc to have smaller images.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2019 09:24 AM
I am not concerned with the screen flow; it is fine. I want to be able to hide the username and password text strings and their values on the Account Created (i.e. Self-Registration Success) screen (the third screen on the attached Word document). I just need the code to copy into the ISE Optional Content 2 box for the Self-Registration Success screen on the Guest Portal Page Customization screen to allow this to occur.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2019 12:15 PM
did you try this example? listed off http://cs.co/ise-guest
https://community.cisco.com/t5/identity-services-engine-ise/ise-credentialed-guest-portal-hide-username-in-login-box/m-p/3510733
For the self-reg success screen you can uncheck the boxes for the username password being displayed under that pages settings.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2019 12:25 PM
No, I am not sure you do yet. I want to be able to hide the username and password text strings and their values on the Account Created (i.e. Self-Registration Success) screen (which is the third screen on the attached Word document, not the login screen). I just need the code to copy into the ISE Optional Content 2 box for the Self-Registration Success screen on the Guest Portal Page Customization screen to allow me to hide these four items. I can not simply remove them from the ISE portal modification screen as there is an edit in place that forces you to have these two items, at a minimum, included.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2019 01:18 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2019 06:52 AM
Try this out for the Self-reg success page:
Please try the below script in Self-Registration Success page > Optional Content 2.
<script> $(document).on("pageshow", function(){ $('.ui_self_reg_results_username_label').remove(); $('.ui_self_reg_results_password_label').remove(); }); </script>
In the same page right side top corner, username is displayed. If it is required to remove that as well, then please use the below script.
<script> $(document).on("pageshow", function(){ $('.ui_self_reg_results_username_label').remove(); $('.ui_self_reg_results_password_label').remove(); $('.ui-btn-right').remove(); }); </script>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2019 07:14 AM
That solved my issue. Thanks so much for your assistance with this.
