ISE Web Portal Customization Options. Secure Access How-to User Guide Series

Size: px
Start display at page:

Download "ISE Web Portal Customization Options. Secure Access How-to User Guide Series"

Transcription

1 ISE Web Portal Customization Options Secure Access How-to User Guide Series Author: Jason Kunst Date: July 9, 2015

2 Table of Contents About this guide... 3 Prerequisite to using JavaScript on your portal pages... 5 Exercises... 6 Exercise 1: Mini-editor move Don t have an account to top of page using JavaScript... 6 Exercise Description... 6 Exercise Objective... 7 Exercise Tasks... 7 Exercise 2: Embedding a background image using CSS Exercise Description Exercise Overview Exercise Tasks Exercise 3: jquery ThemeRoller Basics Exercise Description Exercise Overview Exercise Tasks Exercise 4: Introduction to ISE Portal Builder Exercise Description Exercise Objective Exercise Tasks Cisco Systems 2015 Page 2

3 About this guide This guide helps users understand how to work with ISE portal customizations in ISE versions 1.3 and higher. It includes basic, intermediate and advanced customizations examples and touches on the use of built-in tools, JavaScript, CSS, jquery ThemeRoller, and the ISE Portal Builder. These same concepts can be used in all of the user portal flows that ISE supports (Guest, BYOD, MDM, My Devices and Posture). In this guide, we will work with the Guest Portals. You can learn the basics of portal customization and see a few general examples in Customizing End-User Web Portals in the ISE Administrator Guide. There are three types of users that are interested in customizing web portals: the average user, the tweaker, and the hacker. These tasks are designed such that all users can perform them. The average user can upload a logo or a banner, change some text, bold it, and change the colors on the page. For those users working with html/javascript and those familiar with the workings of ISE, they will also be able to take the examples provided and paste them into the page to make basic changes. An example of this might be moving an element on the page or changing some text into a button. The tweaker is a user who has some basic skills with programming and dabbles in code. They would be able to grab samples and easily implement them in a portal. Another possibility would be to take multiple examples and merge them for other uses, plus move elements, change colors and layouts, etc. This user would also be able to learn jquery Mobile or CSS and do some more globalized changes such as rounding, coloring, and so on. The hacker is someone who lives and breathes web development. They know CSS, Javascript, and HTML. They can do most anything they need within the capabilities of ISE when it comes to customization branding. All of these users might have some level of need for the ISE Portal Builder. It s mainly used for changing the look and feel of your portal without having knowledge of CSS, HTML or JavaScript. Not everyone is going to need to use it but it is available to anyone with a Cisco Connection Online (CCO) account. This overlay tool has prebuilt portal templates for the entire user flows that ISE supports. It also gives you a true WYSIWYG editor that allows you to change text, coloring, buttons, layout and more. It should not be used if someone wants to make a few minor tweaks to a portal page. There are many tools in our toolkit and they should all should be evaluated before making your customizations. These exercises will introduce you to some common, intermediate, and advanced customizations available in ISE 1.3 and later versions. This document will not teach you programming of HTML, CSS or JavaScript. For tutorials on how to use these languages visit sites such as Code Academy. The following table shows you some common tasks you might want to perform and what type of tool you would use to perform them: Cisco Systems 2015 Page 3

4 Function Tools ISE built-in ISE Javascript HTML CSS jquery Theme Roller CSS Portal Builder Move an element on the page (Example: don t have an account) Change button color Change text/background color Display additional images (Example: background image) Note: requires using an external web server or file remediation Change Layout of page Different layout per language (includes logo, banener) No Yes Yes No Yes No Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes N/A Yes Right-to-left languages (Arabic/Hebrew) No Yes () Yes (difficult) No Yes (prebuilt) Combine different customizations Yes Yes Yes Yes No (layout changes coloring, etc would all need to be handled by Portal Builder) Cisco Systems 2015 Page 4

5 Prerequisite to using JavaScript on your portal pages Before you work with any of the following exercises this is a required step to allow JavaScript to be used in the portal page customizations. Step 1 Step 2 Step 3 Access your ISE administrative web interface. Choose Administration > System > Admin Access > Settings > Portal Customization Select Enable Portal Customization with HTML and JavaScript Figure 1 Enable Portal Customization Setting change Cisco Systems 2015 Page 5

6 Exercises This guide includes the following exercises: Exercise 1: Mini-editor move Don t have an account to top of page using JavaScript Exercise 2: Embedding a background image using CSS Exercise 3: jquery ThemeRoller Basics Exercise 4: Introduction to ISE Portal Builder Exercise 1: Mini-editor move Don t have an account to top of page using JavaScript Exercise Description In this exercise you will enable ISE customization to use JavaScript to move an element Don t have an account from the bottom of self-registration login page to the top. Here is an example of a self-registration portal that this exercise would change. When working with JavaScript injection on the portal pages, it only affects the page and language you made the change on. If you would like this to happen across multiple languages, for example, then you will need to make the change using the Language Properties files or using our global CSS. We will cover that in a later exercise. Figure 2 Move Don't have an account so easier to find (this is final result) Cisco Systems 2015 Page 6

7 Exercise Objective In this exercise, your goal is to complete the following tasks: Learn how to inject code such as JavaScript into an ISE portal page Move an element Don t have an account to the top of the page Exercise Tasks Step 1 Step 2 Step 3 Step 4 Access your ISE admin portal Choose Guest Access > Configure > Guest Portals Choose your Self-Registered Guest Portal Select Portal Page Customization Figure 3 Select Portal Page Customization Notice there are two optional content areas available: Optional Content 1 box will put your text above the instructional text section. Optional Content 2 will put your text below it. In all of the JavaScript examples, the recommendation is to always utilize the Optional Content 2 area. This will do everything you need. Step 5 Step 6 Scroll down to the Optional Content 2 area Select the Toggle HTML Source button Figure 4 Toggle HTML Source Note: While in HTML Source you can enter HTML, Javascript and CSS For this example we are going to resize the message text, Don t have an account and move it to the top of the screen so it s more visible. Cisco Systems 2015 Page 7

8 Figure 5 Don't have an account default location Step 7 Paste the script between the lines below ( ) into the mini-editor <script> $('#ui_login_self_reg_button').insertafter('#ui_login_instruction_message'); </script> <style> #ui_login_self_reg_button { font-size:2em; } </style> Step 8 Select the Toggle HTML source again. Notice the Preview screen is updated with the Don t have an account text moved to the top of the Sign on Page. Figure 6 Updated preview window Cisco Systems 2015 Page 8

9 Note: Not all modifications will show in the mini-preview. For those that don t, use the portal test url shown below. Step 9 Step 10 Click Save. Click Portal Test URL at the top of the page to see how it looks with the Desktop Preview. Figure 7 Use Portal test URL to see desktop view Note: These changes are only for the English language portal (or whatever language you implement it in). Some customers will be fine with this, for example a U.S. University where everyone should be able to understand a basic English Guest Portal. For those instances the recommendation would be to always present English regardless of the Guest s browser locale settings. Otherwise if a user accessed the Guest Network using a browser set to another language they would not see this modification as it was only made on the English portal. This setting is under Portal Behaviour and Flow Settings > Portal Settings > Display Language: Always Use If you would like to see this change on other languages then you will need to use one of the following methods: 1. Using the ISE UI repeat the process for every language you want to have the JavaScript implemented. 2. Export the Language Properties file and put the JavaScript under optional_content_2 for each language, then reimport it. 3. Develop CSS that will make this change globally for all languages (requires someone who deeply knows CSS) 4. Use the ISE Portal Builder for making easy global page layout changes. This is only recommended if you have lots of layout changes to make and don t have experienced staff or funds to make a more customized experience on your own. Per note above you won t see the changes on the other language login page. Try changing the language and notice its missing. Step 11 Click on Japanese and then look at the preview and notice the Don t have an account text is in its original place at the bottom under the button. Cisco Systems 2015 Page 9

10 Figure 8 Working with page customization You have completed working with JavaScript usage in the mini-editor. Note: This customization can still be combined with other changes to the page editors and CSS. It cannot be combined with the portal builder, as the portal builder will overwrite any page changes with a global overlay file. Cisco Systems 2015 Page 10

11 Exercise 2: Embedding a background image using CSS Exercise Description In ISE 1.3 and higher there isn t a repository for storing files that are used for web portal customization. The logo and banner files that are uploaded are not visible via the admin UI outside of the portal. These files are also specific to each of your portals so if you upload a logo/banner for a hotspot you will need to upload the same files again for a credentialed portal. There is no global view of these uploaded files. In this Exercise you will learn how to host an image on ISE, specifically a background image. The images can be hosted on ISE under the File Remediation resources or on a separate web server. You will need an Advanced or Apex license installed on ISE to be able to see the File Remediation location. This would also work for advertisements, announcements, or other files. The same method can be used for images hosted on an external server. If the images are hosted on an external server, then the guest ACLs will need to make sure that the guest device can access that server without redirection. Figure 9 Example of embedded Background image Exercise Overview In this exercise, your goal is to complete the following tasks: Upload your image to File Remediation location Export a CSS theme for modification Modify the CSS to serve a background Implement the new CSS theme on your portal Cisco Systems 2015 Page 11

12 Exercise Tasks Step 1 Step 2 Step 3 Step 4 Exercise TasksGo to the ISE UI and login if needed Choose Policy > Policy Elements > Results Expand Posture and Remediation Actions Choose File Remediation Figure 10 Add needed files to File Remediation Step 5 Click Add to add a file: a. Enter Name and Description b. Click Browse to upload a file c. Click Submit. After upload you will see the file listed: Figure 11 Added background image Cisco Systems 2015 Page 12

13 Now that you have uploaded your image here is the path to that image: Use the relative path for your code so it will work with any deployments (standalone or distributed) as the file is served from the PSN. Absolute path can be used for testing outside of ISE. Relative: /auth/packages/<name>/<file_name> Example: /auth/packages/iseiscool-guestbackground/iseiscool-background.jpg Absolute: Example: Step 6 Step 7 Step 8 Step 9 Choose Guest Access > Configure > Guest Portals > Hotspot Guest Portal (default) Choose Portal Page Customization Select Advanced Customization > Export/Import Themes Choose the theme you want to work with and then Select Export Theme CSS Figure 12 Export Theme CSS Step 10 Step 11 Save your CSS file Open the CSS in the text editor of your choice Step 12 Replace the section of text between the dashes (------) Note: In general we are removing all of the gradient sections as they are replaced by the background image ui-bar-a { border: 1px solid #d3d3d3 /*{a-bar-border}*/; background: #4ea4f4 /*{a-bar-background-color}*/; color: #ffffff /*{a-bar-color}*/; font-weight: bold; text-shadow: 0 /*{a-bar-shadow-x}*/ 0 /*{a-bar-shadow-y}*/ 0 /*{a-bar-shadow-radius}*/ #0a569c /*{a-bar-shadowcolor}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #4da2f1 /*{a-bar-background-start}*/), to( Cisco Systems 2015 Page 13

14 #4ea5f6 /*{a-bar-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #4da2f1 /*{a-bar-background-start}*/, #4ea5f6 /*{a-bar-backgroundend}*/); /* Chrome 10+, Saf5.1+ */ -moz-linear-gradient( #4da2f1 /*{a-bar-background-start}*/, #4ea5f6 /*{a-bar-background- background-image: end}*/); /* FF3.6 */ -ms-linear-gradient( #4da2f1 /*{a-bar-background-start}*/, #4ea5f6 /*{a-bar-background- background-image: end}*/); /* IE10 */ background-image: -o-linear-gradient( #4da2f1 /*{a-bar-background-start}*/, #4ea5f6 /*{a-bar-backgroundend}*/); /* Opera */ } background-image: linear-gradient( #4da2f1 /*{a-bar-background-start}*/, #4ea5f6 /*{a-bar-background-end}*/); with this text.ui-bar-a { border: 1px solid #d3d3d3 /*{a-bar-border}*/; color: #ffffff /*{a-bar-color}*/; font-weight: bold; text-shadow: 0 /*{a-bar-shadow-x}*/ 0 /*{a-bar-shadow-y}*/ 0 /*{a-bar-shadow-radius}*/ #0a569c /*{a-bar-shadowcolor}*/; } Step 13 Replace the section of text between the dashes (------) ui-body-a,.ui-overlay-a { border: 1px solid #d3d3d3 /*{a-body-border}*/; color: #666 /*{a-body-color}*/; text-shadow: 0 /*{a-body-shadow-x}*/ 0 /*{a-body-shadow-y}*/ 0 /*{a-body-shadow-radius}*/ #ffffff /*{a-body-shadowcolor}*/; background: #ffffff /*{a-body-background-color}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #ffffff /*{a-body-background-start}*/), to( #ffffff /*{a-body-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #ffffff /*{a-body-background-start}*/, #ffffff /*{a-body-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: /* FF3.6 */ background-image: /* IE10 */ -moz-linear-gradient( #ffffff /*{a-body-background-start}*/, #ffffff /*{a-body-background-end}*/); -ms-linear-gradient( #ffffff /*{a-body-background-start}*/, #ffffff /*{a-body-background-end}*/); background-image: -o-linear-gradient( #ffffff /*{a-body-background-start}*/, #ffffff /*{a-body-background-end}*/); /* Opera */ } background-image: linear-gradient( #ffffff /*{a-body-background-start}*/, #ffffff /*{a-body-background-end}*/); Cisco Systems 2015 Page 14

15 with the following text.ui-body-a,.ui-overlay-a { border: 1px solid #d3d3d3 /*{a-body-border}*/; color: #666 /*{a-body-color}*/; } Step 14 Paste the following text at the very bottom of the file } body.cisco-ise-content { background-color: white ; } body{ background-image: url("/auth/packages/iseiscool-guestbackground/iseiscool-background.jpg")!important; background-size: cover;}.ui-dialog-contain >.ui-content { } background: none repeat scroll 0 0 white; body.ui-dialog.ui-dialog-contain.ui-header { background: none repeat scroll 0 0 #0a569c; }.progresswizard.ui-bar-a.step-inner { background: linear-gradient(#4da2f1, #4ea5f6) repeat scroll 0 0 #4ea4f4; } Step 15 Save your edited CSS file: a. Filename: iseiscool-guest.theme.css Figure 13 Save your new CSS file Step 16 Step 17 Go back to ISE and login if needed and navigate back to same section. If the page is still open skip to Step 23 Choose Guest Access > Configure > Guest Portals > Hotspot Guest Portal (default) Cisco Systems 2015 Page 15

16 Step 18 Step 19 Step 20 Step 21 Step 22 Choose Portal Page Customization Select Advanced Customization > Export/Import Themes Browse for the iseiscool-guest.theme.css file located on the Desktop. Enter a theme name such as iseiscool. Click Save Note: Notice your theme is now applied and the Tweaks button is now disabled? If you need to change your colors the recommendation would be to first tweak your colors, then export the CSS to add the background. Figure 14 Portal Theme applied For advanced users/options Export your theme, make changes to the CSS directly or use jquery Theme Roller. Then add your background and import it back. Step 23 Click Save at the top of the Portal Customization screen Figure 15 Save and preview using Portal Test URL Step 24 You will need to click on the portal test url to see the change Note: This customization can still be combined with other changes to the page editors and CSS. It cannot be combined with the portal builder, as the portal builder will overwrite with a JavaScript overlay. Note: Not all tweaks will be shown in the mini-preview Cisco Systems 2015 Page 16

17 Figure 16 Background Final Example Exercise 3: jquery ThemeRoller Basics Exercise Description ISE built-in customization options allow you to tweak basic items such as banner, background, text color/sizing/bolding and the wording of the text. If you would like to tweak more items such as button or background colors then you can do that with JavaScript/CSS (if you have someone experienced in that or find some code that may work and be tweak if they have time to mess around with it). You could also use the ISE Portal Builder (shown in the next exercise). For those who know or are interested in globally tweaking the look and feel of their portal they can dive into the world of jquery ThemeRoller! For tutorials on how to use HTML, CSS, and Javascript code to customize the text and content that appears on your portal pages, visit Code Academy. In this exercise we will go over the very basics on how to export, tweak and import a theme using the jquery site. For more information about ISE and jquery also reference this section of the admin guide Exercise Overview In this exercise, your goal is to complete the following tasks: Export a theme from ISE Import into jquery ThemeRoller and Tweak some of your settings in the tool Import the theme back into ISE for use Review your changes Exercise Tasks Step 1 Step 2 Go to the ISE UI and login if needed Choose Guest Access > Configure > Guest Portals > Self-Registered Guest Portal (Default) Cisco Systems 2015 Page 17

18 Step 3 Step 4 Step 5 Step 6 Choose Portal Page Customization Select Advanced Customization > Export/Import Themes Choose the Default Blue Theme Select Export Theme CSS Figure 17 Export CSS Step 7 Step 8 Save the file to your desktop. In your web browser, open a new browser tab and navigate to To edit the default Cisco-provided CSS files or create new files based on the CSS classes and structures defined in the default themes, use the required version of jquery Mobile ThemeRoller (Release 1.3.2). Figure 18 Theme Roller Choose Version Step 9 In the upper left of the page Switch to version Step 10 Click on the Get Rolling button in the middle of the page. Cisco Systems 2015 Page 18

19 Figure 19 Get Rolling with jquery Step 11 Step 12 Step 13 Step 14 Step 15 Open guest.theme.1.css file from your desktop with a text editor Select all your text Copy all your text Change back to the jquery tab open in your browser Select Import or upgrade at the top of the tool page Figure 20 Import or Upgrade Step 16 Paste the text into the jquery Import Theme box. Figure 21 Paste your CSS into the import theme box Step 17 Click Import You ll notice how the jquery screen has changed. It now reflects the way the default blue theme on ISE is designed. Cisco Systems 2015 Page 19

20 The scheme of Cisco's end-user portals is compatible with jquery ThemeRoller. You can easily edit the look for an entire portal using the ThemeRoller web site. ThemeRoller swatches each contain a unique scheme, which defines the colors, textures, and font settings for the primary UI elements, such as toolbars, content blocks, buttons, list items, and font text-shadow. A scheme also defines the settings for various interaction states of the buttons: normal, hover, and pressed. Cisco Systems 2015 Page 20

21 Cisco ISE uses three swatches: Swatch A The default swatch. Swatch B Defines emphasized elements, such as an Accept button. Swatch C Defines critical elements such as alerts, error messages, invalid input fields, and delete buttons. Figure 22 Working with swatches Notice the Sponsored Guest Portal. The first example, the text input matches Swatch A and the button matches Swatch B. For the next example, I clicked Login without entering any credentials and let the page time out. This looks shows error conditions from Swatch C. You cannot apply additional swatches, unless you add HTML code (to the Optional Content, for example) with elements that use the newly added swatches. This is beyond the scope of this document and would require someone with advanced web publishing skills. Cisco Systems 2015 Page 21

22 For additional information on swatches and themes in jquery Mobile ThemeRoller, see "Theming Overview" in Creating a Custom Theme with ThemeRoller. Use the online help in jquery Mobile ThemeRoller to learn how to download, import, and share your custom themes. For tutorials on how to use HTML, CSS, and Javascript code to customize the text and content that appears on your portal pages, visit Code Academy. Let s try changing some of the elements and see how they show in our portal on ISE. Swatch A - Drag a color from the top color chooser of the tool page to the background Swatch B change your Active item, such as the Button Color Swatch C if you choose to change error conditions color Figure 23 Tweaking your swatches Step 18 Click on Download theme zip file Figure 24 Download zip file Cisco Systems 2015 Page 22

23 Step 19 Give it a theme name of jquery and click Download Zip Figure 25 Name theme and download Step 20 Open the Zip file. Step 21 Open the themes Folder Note: There is more than one CSS file, ISE only uses the jquery.css. Step 22 Step 23 Step 24 Step 25 Step 26 Step 27 Step 28 Drag the file, jquery.css, to the downloads folder Open up ISE in your browser and login if needed Navigate to Guest Access > Configure > Guest Portals Choose the Sponsored guest portal (default) Choose Portal Page Customization Choose Advanced Customization > Export/Import Themes Browse into the download folder for the file, jquery.css Figure 26 Upload theme to ISE Cisco Systems 2015 Page 23

24 Step 29 Step 30 Give it a Theme name of jquery Click Save. After implementation of the new theme, you will see the changes to Swatch A (background) and Swatch B (button color) in the mini-preview on the page. To see the changes to Swatch C (f you made them) then use the portal test URL by testing the actual flow Figure 27 Theme change in mini-preview Step 31 Step 32 Click Save Choose Portal Test URL Step 33 Review your changes Cisco Systems 2015 Page 24 Figure 28 Test new portal theme

25 Note: This customization can still be combined with other changes to the page editors and CSS. It cannot be combined with the portal builder, as the portal builder will overwrite with its own JavaScript overlay file. Cisco Systems 2015 Page 25

26 Exercise 4: Introduction to ISE Portal Builder Exercise Description ISE built-in customization options allow you to tweak basic items such as banner, background, text color/sizing/bolding and the wording of the text. If you would like to tweak more items such as button or background colors then you can do that with JavaScript/CSS (if you have someone experienced in that or find some code that may work and be tweak if they have time to mess around with it). You could also use the ISE Portal Builder. The Cisco ISE portal builder is a web-based tool that allows you to customize the various portals in ISE, including hotspot portals, self-registered and sponsored guest portals, BYOD portals, client-provisioning portals, MDM portals, and My Devices Portals. The ISE portal builder allows you do powerful things with portal customization that are not possible through the basic ISE GUI portal customization interface. Once you have designed a custom portal, the ISE portal builder allows you to export the custom portal as a single zip file. A simple Firefox plugin is then loaded that interacts with ISE upon login. The plugin allows easy uploading and management of custom portals. The portal builder main purpose is for those customers who don t have the expertise on-staff or who would need to pay someone to make changes that are not easily done in ISE. Example: Injecting a background image, moving elements around on the page, changing the button color, and adding an announcement image. If you only need to make a few minor changes to the portal it is not recommended to use the portal builder. It would be recommended to implement these in the portal directly on ISE itself. In this scenario, you will explore the ISE portal builder, create a custom hotspot and upload the custom portal to ISE. Exercise Objective In this exercise, your goal is to complete the following task: Explore the ISE Portal Builder Create a portal Export the portal Upload the portal to ISE Exercise Tasks Step 1 Using Firefox, navigate to the ISE Portal Builder Site at Cisco Systems 2015 Page 26

27 Figure 29 Portal Builder Login Step 2 Click FAQ at the top right of the screen to review the Frequently Asked Questions. Get familiar with them. Figure 30 Portal Builder Top Right Menu Step 3 Go back to the ISE Portal Builder browser tab. Step 4 Click Demos at the top right of the screen and review the two short videos on creating a portal and uploading a portal using the Firefox plugin. Step 5 Go back to the ISE Portal Builder tab and click Sign In With Cisco ID. Figure 31 Template Gallery Cisco Systems 2015 Page 27

28 Step 6 Click Image Manager in the upper right of the tool. Step 7 The image manager has two basic sections: Private Images upload your own custom images that can later be used for portal customization. Public Images contains various images for use for things like portal backgrounds, banners and logos. Figure 32 Image Manager Step 8 Click Upload Images, and select a background image you would like to use or you can user on the public images. Step 9 Click Open. This image will be the custom background for our custom hotspot portal. Step 10 After the image has been uploaded, click X to close the image manager. Step 11 Click on the Template Gallery icon in the left column. The ISE Portal Builder comes loaded with different templates. Figure 33 Template Gallery Icon Step 12 Hover over the Default template and click the check mark to start creating a custom portal based on this template. Cisco Systems 2015 Page 28

29 Figure 34 Default Cisco Template Step 13 In the portal name field, type HotspotPB. Step 14 Select Hotspot Guest Portal for the Portal Type Step 15 Click OK. This displays the portal editor screen. Figure 35 Portal Page Editor Step 16 Click the Cisco logo on the upper left side of the top banner. This opens the Logo Editor. Step 17 Click Replace. Cisco Systems 2015 Page 29

30 Figure 36 Replace the logo Cisco Systems 2015 Page 30

31 Step 18 Navigate to the Public Images section and select the ISEisCOOL Hotspot logo. Click Select. Figure 37 Choose your logo This logo displays in the place of the default Cisco logo Step 19 In the panel on the left, remove the image dimensions. Figure 38 Remove the Logo Dimensions Step 20 Click on the Hotspot Portal text and drag it to the left and put in the trash can that will appear. Cisco Systems 2015 Page 31

32 Step 21 Click on the top banner image (not the logo) to bring up the banner Block editor. The pointer will change to a hand and then you can click on it. Step 22 Click Replace to replace the default banner image. Figure 39 Change the default banner Step 23 Click Public Images to show the available images. Step 24 Click the Banner tag on the right so that only banner images display. Figure 40 Replace Banner Figure 41 Choose your background Step 25 Select the ISEisC00L banner (looks like mountains) and click Select. Cisco Systems 2015 Page 32

33 Step 26 Click anywhere in the default white background to show the Background editor. Figure 42 Change the background Step 27 Click Browse to replace the default background image. Step 28 Select the mountain image you uploaded before. Click Select Figure 43 Choose your background Cisco Systems 2015 Page 33

34 Step 29 Click the text inside the Acceptable Use Policy to open the Text editor. Step 30 Click Edit, highlight the existing text and replace with an example, like in the image below. Bold the first line of text to show that you can change text attributes, as well. Step 31 Click the X in the Text editor column to save changes. Figure 44 Text Editing Step 32 Click on the Accept button for the Acceptable Use Policy to bring up the Button editor. Step 33 Click Background-color to change the background color of the button to red. Click OK. Figure 45 Edit button color Step 34 Click the X in the Button editor to return to the main portal editor. Cisco Systems 2015 Page 34

35 Step 35 Click the gear icon to open the portal Settings page. Step 36 Check the box for Require an access code. Enter iseiscool in the Access code box and click X. Figure 46 Require Access Code Step 37 Click the Export button in the upper right. Figure 47 Export Cisco Systems 2015 Page 35

36 Step 38 Do not change the portal name (HotspotPB) and the type (Hotspot Guest Portal). Step 39 Click on the Get ISEPB Portal Upload & Config Tool in the bottom left of the notification screen. This will download to your local machine. Figure 48 Export your portal Step 40 Install the add-on to Firefox (process varies depending on Apple or Windows OS) Figure 49 install Firefox add-on Step 41 In the portal builder, Click Export Portal Step 42 Save your file. Now you have created and exported your custom portal using the ISE portal builder web interface. Next you will import the portal into ISE using the ISE portal builder add-on for Firefox. Note: The Uploader and config tool monitors your connections to ISE and won t start until it sees a new connection Step 43 Close out of any browser tab that has ISE opened Cisco Systems 2015 Page 36

37 Step 44 Open a new connection to ISE using the bookmark. Step 45 Login to ISE Step 46 Navigate to Guest Access > Configure > Guest Portals. Note: The ISE portal builder tool pops up in the upper right corner of the browser. It shows all the portals configured. The X allows you to delete the portal. You should only remove portals created by the portal builder tool The tool has a cleanup mechanism to remove the portal and any associated files that were put on ISE when the portal was created. Step 47 Choose Hotspot Guest Portal (default). Figure 50 Guest Portals Step 48 Click Browse on the ISEPB Portal Upload & Config Tool pop up. Figure 51 Choose your portal to upload Step 49 From the File Upload window, select the custom portal zip file you exported in the earlier scenario and click Open. Step 50 When finished uploading, click OK on the ISEPB Portal Upload & Config Tool pop up. Note: This populates the Portal Name and Description. Do not make any changes to those fields. Cisco Systems 2015 Page 37

38 It is not necessary to click Save, as the tool saves the changes. If you click save within ISE, you may lose changes. When you implement a portal using the ISE portal builder tool, it is important to make all changes to portal settings inside the portal builder, before exporting the portal. Creating a portal with the ISE portal builder and editing the portal settings within ISE will likely have unpredictably bad results. If you have created a portal with the portal builder, imported it into ISE and then need to make changes to the portal settings, you should implement the changes inside ISE portal builder, and export/import the portal again Figure 52 Portal after upload Step 51 Click Portal test URL to preview your custom imported portal. Step 52 This displays your custom portal. Close the tab that opened for the portal test URL and click Close on the ISE page. Cisco Systems 2015 Page 38

How To Change Your Site On Drupal Cloud On A Pcode On A Microsoft Powerstone On A Macbook Or Ipad (For Free) On A Freebie (For A Free Download) On An Ipad Or Ipa (For

How To Change Your Site On Drupal Cloud On A Pcode On A Microsoft Powerstone On A Macbook Or Ipad (For Free) On A Freebie (For A Free Download) On An Ipad Or Ipa (For How-to Guide: MIT DLC Drupal Cloud Theme This guide will show you how to take your initial Drupal Cloud site... and turn it into something more like this, using the MIT DLC Drupal Cloud theme. See this

More information

JTouch Mobile Extension for Joomla! User Guide

JTouch Mobile Extension for Joomla! User Guide JTouch Mobile Extension for Joomla! User Guide A Mobilization Plugin & Touch Friendly Template for Joomla! 2.5 Author: Huy Nguyen Co- Author: John Nguyen ABSTRACT The JTouch Mobile extension was developed

More information

Salesforce Customer Portal Implementation Guide

Salesforce Customer Portal Implementation Guide Salesforce Customer Portal Implementation Guide Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

WebFOCUS BI Portal: S.I.M.P.L.E. as can be

WebFOCUS BI Portal: S.I.M.P.L.E. as can be WebFOCUS BI Portal: S.I.M.P.L.E. as can be Author: Matthew Lerner Company: Information Builders Presentation Abstract: This hands-on session will introduce attendees to the new WebFOCUS BI Portal. We will

More information

PORTAL ADMINISTRATION

PORTAL ADMINISTRATION 1 Portal Administration User s Guide PORTAL ADMINISTRATION GUIDE Page 1 2 Portal Administration User s Guide Table of Contents Introduction...5 Core Portal Framework Concepts...5 Key Items...5 Layouts...5

More information

Using JCPS Online for Websites

Using JCPS Online for Websites Getting Started Before you begin, an Online Group must be created for you. Send an email requesting the group along with the username of anyone you want added as an editor to mike.broderick@jefferson.kyschools.us.

More information

DESIGN A WEB SITE USING PUBLISHER Before you begin, plan your Web site

DESIGN A WEB SITE USING PUBLISHER Before you begin, plan your Web site Page 1 of 22 DESIGN A WEB SITE USING PUBLISHER Before you begin, plan your Web site Before you create your Web site, ask yourself these questions: What do I want the site to do? Whom do I want to visit

More information

How To Write A Cq5 Authoring Manual On An Ubuntu Cq 5.2.2 (Windows) (Windows 5) (Mac) (Apple) (Amd) (Powerbook) (Html) (Web) (Font

How To Write A Cq5 Authoring Manual On An Ubuntu Cq 5.2.2 (Windows) (Windows 5) (Mac) (Apple) (Amd) (Powerbook) (Html) (Web) (Font Adobe CQ5 Authoring Basics Print Manual SFU s Content Management System SFU IT Services CMS Team ABSTRACT A summary of CQ5 Authoring Basics including: Setup and Login, CQ Interface Tour, Versioning, Uploading

More information

Joomla! 2.5.x Training Manual

Joomla! 2.5.x Training Manual Joomla! 2.5.x Training Manual Joomla is an online content management system that keeps track of all content on your website including text, images, links, and documents. This manual includes several tutorials

More information

CMS Training. Prepared for the Nature Conservancy. March 2012

CMS Training. Prepared for the Nature Conservancy. March 2012 CMS Training Prepared for the Nature Conservancy March 2012 Session Objectives... 3 Structure and General Functionality... 4 Section Objectives... 4 Six Advantages of using CMS... 4 Basic navigation...

More information

UH CMS Basics. Cascade CMS Basics Class. UH CMS Basics Updated: June,2011! Page 1

UH CMS Basics. Cascade CMS Basics Class. UH CMS Basics Updated: June,2011! Page 1 UH CMS Basics Cascade CMS Basics Class UH CMS Basics Updated: June,2011! Page 1 Introduction I. What is a CMS?! A CMS or Content Management System is a web based piece of software used to create web content,

More information

Google Sites: Creating, editing, and sharing a site

Google Sites: Creating, editing, and sharing a site Google Sites: Creating, editing, and sharing a site Google Sites is an application that makes building a website for your organization as easy as editing a document. With Google Sites, teams can quickly

More information

EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators

EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators Version 1.0 Last Updated on 15 th October 2011 Table of Contents Introduction... 3 File Manager... 5 Site Log...

More information

Google Docs Basics Website: http://etc.usf.edu/te/

Google Docs Basics Website: http://etc.usf.edu/te/ Website: http://etc.usf.edu/te/ Google Docs is a free web-based office suite that allows you to store documents online so you can access them from any computer with an internet connection. With Google

More information

DRUPAL WEB EDITING TRAINING

DRUPAL WEB EDITING TRAINING LOGIN AND VIEW CONTENT Work in Firefox DRUPAL WEB EDITING TRAINING the black logo in the upper right corner to log into Drupal The User Work Area will come up: General Information My Recent Edits the content

More information

WIX: Building a Website with a Template. Choosing a Template First you will need to choose a template from the Create section of the Wix website.

WIX: Building a Website with a Template. Choosing a Template First you will need to choose a template from the Create section of the Wix website. WIX: Building a Website with a Template Choosing a Template First you will need to choose a template from the Create section of the Wix website. To choose a template: 1. Go to wix.com. 2. From the top

More information

Google Sites: Site Creation and Home Page Design

Google Sites: Site Creation and Home Page Design Google Sites: Site Creation and Home Page Design This is the second tutorial in the Google Sites series. You should already have your site set up. You should know its URL and your Google Sites Login and

More information

Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business

Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business 2015 Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business This manual will take you through all the areas that you are likely to use in order to maintain, update

More information

USER GUIDE. Unit 2: Synergy. Chapter 2: Using Schoolwires Synergy

USER GUIDE. Unit 2: Synergy. Chapter 2: Using Schoolwires Synergy USER GUIDE Unit 2: Synergy Chapter 2: Using Schoolwires Synergy Schoolwires Synergy & Assist Version 2.0 TABLE OF CONTENTS Introductions... 1 Audience... 1 Objectives... 1 Before You Begin... 1 Getting

More information

Website Builder Documentation

Website Builder Documentation Website Builder Documentation Main Dashboard page In the main dashboard page you can see and manager all of your projects. Filter Bar In the filter bar at the top you can filter and search your projects

More information

Virtual Exhibit 5.0 requires that you have PastPerfect version 5.0 or higher with the MultiMedia and Virtual Exhibit Upgrades.

Virtual Exhibit 5.0 requires that you have PastPerfect version 5.0 or higher with the MultiMedia and Virtual Exhibit Upgrades. 28 VIRTUAL EXHIBIT Virtual Exhibit (VE) is the instant Web exhibit creation tool for PastPerfect Museum Software. Virtual Exhibit converts selected collection records and images from PastPerfect to HTML

More information

Ingeniux 8 CMS Web Management System ICIT Technology Training and Advancement (training@uww.edu)

Ingeniux 8 CMS Web Management System ICIT Technology Training and Advancement (training@uww.edu) Ingeniux 8 CMS Web Management System ICIT Technology Training and Advancement (training@uww.edu) Updated on 10/17/2014 Table of Contents About... 4 Who Can Use It... 4 Log into Ingeniux... 4 Using Ingeniux

More information

SPELL Tabs Evaluation Version

SPELL Tabs Evaluation Version SPELL Tabs Evaluation Version Inline Navigation for SharePoint Pages SPELL Tabs v 0.9.2 Evaluation Version May 2013 Author: Christophe HUMBERT User Managed Solutions LLC Table of Contents About the SPELL

More information

NJCU WEBSITE TRAINING MANUAL

NJCU WEBSITE TRAINING MANUAL NJCU WEBSITE TRAINING MANUAL Submit Support Requests to: http://web.njcu.edu/its/websupport/ (Login with your GothicNet Username and Password.) Table of Contents NJCU WEBSITE TRAINING: Content Contributors...

More information

collab.virginia.edu UVACOLLAB ECLPS: BUILDING COURSE PORTALS UVaCollab User Guide Series collab-support@virginia.edu

collab.virginia.edu UVACOLLAB ECLPS: BUILDING COURSE PORTALS UVaCollab User Guide Series collab-support@virginia.edu UVACOLLAB ECLPS: BUILDING COURSE PORTALS UVaCollab User Guide Series collab-support@virginia.edu Revised 4/28/2014 CONTENTS The eclps Overview... 3 Objectives... 3 Adding the Syllabus or Lessons Tool to

More information

Creating a Website with Google Sites

Creating a Website with Google Sites Creating a Website with Google Sites This document provides instructions for creating and publishing a website with Google Sites. At no charge, Google Sites allows you to create a website for various uses,

More information

Introduction Web Tester Customization FAQ

Introduction Web Tester Customization FAQ Introduction Customization FAQ Introduction [getting started] This tutorial is designed for individuals who: Are not familiar with taking tests on a computer Are not familiar with the described in this

More information

Joomla! template Blendvision v 1.0 Customization Manual

Joomla! template Blendvision v 1.0 Customization Manual Joomla! template Blendvision v 1.0 Customization Manual Blendvision template requires Helix II system plugin installed and enabled Download from: http://www.joomshaper.com/joomla-templates/helix-ii Don

More information

Quick Start Guide Mobile Entrée 4

Quick Start Guide Mobile Entrée 4 Table of Contents Table of Contents... 1 Installation... 2 Obtaining the Installer... 2 Installation Using the Installer... 2 Site Configuration... 2 Feature Activation... 2 Definition of a Mobile Application

More information

Basic Web Development @ Fullerton College

Basic Web Development @ Fullerton College Basic Web Development @ Fullerton College Introduction FC Net Accounts Obtaining Web Space Accessing your web space using MS FrontPage Accessing your web space using Macromedia Dreamweaver Accessing your

More information

WEBSITE CONTENT MANAGEMENT SYSTEM USER MANUAL CMS Version 2.0 CMS Manual Version 1.0 2-25-13

WEBSITE CONTENT MANAGEMENT SYSTEM USER MANUAL CMS Version 2.0 CMS Manual Version 1.0 2-25-13 WEBSITE CONTENT MANAGEMENT SYSTEM USER MANUAL CMS Version 2.0 CMS Manual Version 1.0 2-25-13 CONTENTS Things to Remember... 2 Browser Requirements... 2 Why Some Areas of Your Website May Not Be CMS Enabled...

More information

Unbranded Partner Site Customization Guide

Unbranded Partner Site Customization Guide Unbranded Partner Site Customization Guide Contents 3 Hi There! 4 Customization Checklist 5 Site Overview 8 What You Need 9 How to use Triangle 13 Site Structure 15 Customization 2 Hi There! Congratulations

More information

Creating Online Surveys with Qualtrics Survey Tool

Creating Online Surveys with Qualtrics Survey Tool Creating Online Surveys with Qualtrics Survey Tool Copyright 2015, Faculty and Staff Training, West Chester University. A member of the Pennsylvania State System of Higher Education. No portion of this

More information

UOFL SHAREPOINT ADMINISTRATORS GUIDE

UOFL SHAREPOINT ADMINISTRATORS GUIDE UOFL SHAREPOINT ADMINISTRATORS GUIDE WOW What Power! Learn how to administer a SharePoint site. [Type text] SharePoint Administrator Training Table of Contents Basics... 3 Definitions... 3 The Ribbon...

More information

Training Manual Version 1.0

Training Manual Version 1.0 State of Indiana Content Management System Open Text v.11.2 Training Manual Version 1.0 Developed by Table of Contents 1. Getting Started... 4 1.1 Logging In... 4 1.2 OpenText Menu...5 1.3 Selecting a

More information

Quick Start Guide. Installation and Setup

Quick Start Guide. Installation and Setup Quick Start Guide Installation and Setup Introduction Velaro s live help and survey management system provides an exciting new way to engage your customers and website visitors. While adding any new technology

More information

What is new or different in AppScan Enterprise v9.0.2 if you re upgrading from v9.0.1.1

What is new or different in AppScan Enterprise v9.0.2 if you re upgrading from v9.0.1.1 What is new or different in AppScan Enterprise v9.0.2 if you re upgrading from v9.0.1.1 Larissa Berger Miriam Fitzgerald April 24, 2015 Abstract: This white paper guides customers through the new features

More information

Using the Content Management System 05-02-12

Using the Content Management System 05-02-12 Using the Content Management System 05-02-12 Using the Content Management System Introduction 2 Logging In 3 Using the Editor 4 Basic Text Editing 5 Pasting Text 7 Adding Hyperlinks 8 Adding Images 9 Style

More information

ITP 101 Project 3 - Dreamweaver

ITP 101 Project 3 - Dreamweaver ITP 101 Project 3 - Dreamweaver Project Objectives You will also learn how to make a website outlining your company s products, location, and contact info. Project Details USC provides its students with

More information

ios App for Mobile Website! Documentation!

ios App for Mobile Website! Documentation! ios App for Mobile Website Documentation What is IOS App for Mobile Website? IOS App for Mobile Website allows you to run any website inside it and if that website is responsive or mobile compatible, you

More information

WP Popup Magic User Guide

WP Popup Magic User Guide WP Popup Magic User Guide Plugin version 2.6+ Prepared by Scott Bernadot WP Popup Magic User Guide Page 1 Introduction Thank you so much for your purchase! We're excited to present you with the most magical

More information

Appspace 5.X Reference Guide (Digital Signage) Updated on February 9, 2015

Appspace 5.X Reference Guide (Digital Signage) Updated on February 9, 2015 Appspace 5.X Reference Guide (Digital Signage) Updated on February 9, 2015 1 TABLE OF CONTENTS 2 What is Appspace For Digital Signage... 4 3 Access Appspace... 4 4 Best Practices and Notes... 4 5 Appspace

More information

Intellect Platform - Tables and Templates Basic Document Management System - A101

Intellect Platform - Tables and Templates Basic Document Management System - A101 Intellect Platform - Tables and Templates Basic Document Management System - A101 Interneer, Inc. 4/12/2010 Created by Erika Keresztyen 2 Tables and Templates - A101 - Basic Document Management System

More information

Google Sites. How to create a site using Google Sites

Google Sites. How to create a site using Google Sites Contents How to create a site using Google Sites... 2 Creating a Google Site... 2 Choose a Template... 2 Name Your Site... 3 Choose A Theme... 3 Add Site Categories and Descriptions... 3 Launch Your Google

More information

CDUfiles User Guide. Chapter 1: Accessing your data with CDUfiles. Sign In. CDUfiles User Guide Page 1. Here are the first steps to using CDUfiles.

CDUfiles User Guide. Chapter 1: Accessing your data with CDUfiles. Sign In. CDUfiles User Guide Page 1. Here are the first steps to using CDUfiles. CDUfiles User Guide Chapter 1: Accessing your data with CDUfiles Here are the first steps to using CDUfiles. Sign In Open your web browser and enter cdufiles.cdu.edu.au or Note: Use cdufiles.egnyte.com

More information

Using Adobe Dreamweaver CS4 (10.0)

Using Adobe Dreamweaver CS4 (10.0) Getting Started Before you begin create a folder on your desktop called DreamweaverTraining This is where you will save your pages. Inside of the DreamweaverTraining folder, create another folder called

More information

How-to Guide: Creating a Mobile Website Using bmobilized

How-to Guide: Creating a Mobile Website Using bmobilized Mobile Websites How-to Guide: Creating a Mobile Website Using Content Provided by Mobile Websites Content 1. What is a mobile website? 2. Why you need a mobile website? 3. Who is? 4. How to create a mobile

More information

Have you seen the new TAMUG websites?

Have you seen the new TAMUG websites? 4 For all Cascade Management System request for PUBLISHING please email cms@tamug.edu for the quickest response. For all Cascade Management System request for QUESTIONS or COMMENTS please email cascadeusers@tamug.edu

More information

+ Create, and maintain your site

+ Create, and maintain your site T4 Basics Version 1.0 + Create, and maintain your site With T4, you are in control of the content of your website. Feel free to be creative, and keep your site up to date. Few of T4 Features Media Library

More information

Egnyte for Power and Standard Users. User Guide

Egnyte for Power and Standard Users. User Guide Egnyte for Power and Standard Users User Guide Egnyte Inc. 1350 West Middlefield Road. Mountain View, CA 94043, USA Phone: 877-7EGNYTE (877-734-6983) Revised June 2015 Table of Contents Chapter 1: Getting

More information

How to Edit Your Website

How to Edit Your Website How to Edit Your Website A guide to using your Content Management System Overview 2 Accessing the CMS 2 Choosing Your Language 2 Resetting Your Password 3 Sites 4 Favorites 4 Pages 5 Creating Pages 5 Managing

More information

JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA

JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA All information presented in the document has been acquired from http://docs.joomla.org to assist you with your website 1 JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA BACK

More information

UCL INFORMATION SERVICES DIVISION INFORMATION SYSTEMS. Silva. Introduction to Silva. Document No. IS-130

UCL INFORMATION SERVICES DIVISION INFORMATION SYSTEMS. Silva. Introduction to Silva. Document No. IS-130 UCL INFORMATION SERVICES DIVISION INFORMATION SYSTEMS Silva Introduction to Silva Document No. IS-130 Contents What is Silva?... 1 Requesting a website / Web page(s) in Silva 1 Building the site and making

More information

Texas Woman s University RedDot Webspinner s Manual Revised 7/23/2015. webteam@twu.edu

Texas Woman s University RedDot Webspinner s Manual Revised 7/23/2015. webteam@twu.edu Texas Woman s University RedDot Webspinner s Manual Revised 7/23/2015 webteam@twu.edu 1 Contents CONNECTING TO YOUR SITE... 3 MAIN MENU... 4 REPEATED CONTENT AREAS... 4 OPENING PAGE LAYOUTS AND EXISTING

More information

Training Schedule: Third Wednesday of every month from 1:30 PM to 3:00 PM in the ARKU Team Meeting Room ARKU A354

Training Schedule: Third Wednesday of every month from 1:30 PM to 3:00 PM in the ARKU Team Meeting Room ARKU A354 OU Campus 101 Training Schedule: Third Wednesday of every month from 1:30 PM to 3:00 PM in the ARKU Team Meeting Room ARKU A354 Class Description: This introductory course is designed specifically to train

More information

Getting started with OneDrive

Getting started with OneDrive Getting started with OneDrive What is OneDrive? OneDrive is an online storage area intended for business purposes. Your OneDrive library is managed by the University. You can use it to share documents

More information

CAS CLOUD WEB USER GUIDE. UAB College of Arts and Science Cloud Storage Service

CAS CLOUD WEB USER GUIDE. UAB College of Arts and Science Cloud Storage Service CAS CLOUD WEB USER GUIDE UAB College of Arts and Science Cloud Storage Service Windows Version, April 2014 Table of Contents Introduction... 1 UAB Software Policies... 1 System Requirements... 2 Supported

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Integration of Oracle BI Publisher with Oracle Business Intelligence Enterprise Edition Purpose This tutorial mainly covers how Oracle BI Publisher is integrated with

More information

Content Management System User Guide

Content Management System User Guide Content Management System User Guide Table Of Contents Getting Started Checklist... 1 Overview: Portal Content Management System... 3 Anatomy of a Portal Page... 3 Overview of the Content Management System...

More information

VMware Horizon FLEX User Guide

VMware Horizon FLEX User Guide Horizon FLEX 1.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this

More information

AEGEE Podio Guidelines

AEGEE Podio Guidelines AEGEE Podio Guidelines EUROPEAN STUDENTS FORUM Contains What is Podio?... 3 Podio vs Facebook... 3 Video Tutorial Podio Basics... 3 Podio for AEGEE-Europe... 3 How to get it?... 3 Getting started... 4

More information

Xythos on Demand Quick Start Guide For Xythos Drive

Xythos on Demand Quick Start Guide For Xythos Drive Xythos on Demand Quick Start Guide For Xythos Drive What is Xythos on Demand? Xythos on Demand is not your ordinary online storage or file sharing web site. Instead, it is an enterprise-class document

More information

SPHOL326: Designing a SharePoint 2013 Site. Hands-On Lab. Lab Manual

SPHOL326: Designing a SharePoint 2013 Site. Hands-On Lab. Lab Manual 2013 SPHOL326: Designing a SharePoint 2013 Site Hands-On Lab Lab Manual This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site references,

More information

Creating Your Teacher Website using WEEBLY.COM

Creating Your Teacher Website using WEEBLY.COM Creating Your Teacher Website using WEEBLY.COM Gilbert, Akiba Maynard Jackson High School Creating Your Teacher Website Using WEEBLY.COM In this tutorial, we will learn how to build a simple FOUR PAGE

More information

SoftChalk. Level 1. University Information Technology Services. Training, SoftChalk Level Outreach, 1 Learning Technologies and Video Production

SoftChalk. Level 1. University Information Technology Services. Training, SoftChalk Level Outreach, 1 Learning Technologies and Video Production SoftChalk Level 1 University Information Technology Services Training, SoftChalk Level Outreach, 1 Learning Technologies and Video Production Page 1 of 49 Copyright 2013 KSU Department of University Information

More information

Titan Apps. Drive (Documents)

Titan Apps. Drive (Documents) Titan Apps Drive (Documents) University of Wisconsin Oshkosh 7/11/2012 0 Contents What is Titan Apps?... 1 Need Help with Titan Apps?... 1 What other resources can I use to help me with Titan Apps?...

More information

Microsoft Expression Web Quickstart Guide

Microsoft Expression Web Quickstart Guide Microsoft Expression Web Quickstart Guide Expression Web Quickstart Guide (20-Minute Training) Welcome to Expression Web. When you first launch the program, you ll find a number of task panes, toolbars,

More information

What is OneDrive for Business at University of Greenwich? Accessing OneDrive from Office 365

What is OneDrive for Business at University of Greenwich? Accessing OneDrive from Office 365 This guide explains how to access and use the OneDrive for Business cloud based storage system and Microsoft Office Online suite of products via a web browser. What is OneDrive for Business at University

More information

Web Mail Guide... Error! Bookmark not defined. 1 Introduction to Web Mail... 4. 2 Your Web Mail Home Page... 5. 3 Using the Inbox...

Web Mail Guide... Error! Bookmark not defined. 1 Introduction to Web Mail... 4. 2 Your Web Mail Home Page... 5. 3 Using the Inbox... Powered by Table of Contents Web Mail Guide... Error! Bookmark not defined. 1 Introduction to Web Mail... 4 1.1 Requirements... 4 1.2 Recommendations for using Web Mail... 4 1.3 Accessing your Web Mail...

More information

Customising Your Mobile Payment Pages

Customising Your Mobile Payment Pages Corporate Gateway Customising Your Mobile Payment Pages V2.0 May 2014 Use this guide to: Understand how to customise your payment pages for mobile and tablet devices XML Direct Integration Guide > Contents

More information

SharePoint 2010 Web Publishing Manual

SharePoint 2010 Web Publishing Manual SharePoint 2010 Web Publishing Manual 1. IE browser settings 2 2. Logging on 11 3. Exploring the Web Publishing Environment 11 4. Text editing 14 5. Inserting and uploading images 16 6. Uploading and downloading

More information

1 of 31. SharePoint 2010 Web Publishing Manual. 1. IE Settings. Step 1: Adding your SharePoint site to Local Intranet zone. 1. IE browser settings 2

1 of 31. SharePoint 2010 Web Publishing Manual. 1. IE Settings. Step 1: Adding your SharePoint site to Local Intranet zone. 1. IE browser settings 2 1 of 31 SharePoint 2010 Web Publishing Manual 1. IE browser settings 2 2. Logging on 11 3. Exploring the Web Publishing Environment 11 4. Text editing 14 5. Inserting and uploading images 16 6. Uploading

More information

Table of Contents. Welcome... 2. Login... 3. Password Assistance... 4. Self Registration... 5. Secure Mail... 7. Compose... 8. Drafts...

Table of Contents. Welcome... 2. Login... 3. Password Assistance... 4. Self Registration... 5. Secure Mail... 7. Compose... 8. Drafts... Table of Contents Welcome... 2 Login... 3 Password Assistance... 4 Self Registration... 5 Secure Mail... 7 Compose... 8 Drafts... 10 Outbox... 11 Sent Items... 12 View Package Details... 12 File Manager...

More information

Working with RD Web Access in Windows Server 2012

Working with RD Web Access in Windows Server 2012 Working with RD Web Access in Windows Server 2012 Introduction to RD Web Access So far in this series we have talked about how to successfully deploy and manage a Microsoft Windows Server 2012 VDI environment.

More information

PE Content and Methods Create a Website Portfolio using MS Word

PE Content and Methods Create a Website Portfolio using MS Word PE Content and Methods Create a Website Portfolio using MS Word Contents Here s what you will be creating:... 2 Before you start, do this first:... 2 Creating a Home Page... 3 Adding a Background Color

More information

Joomla Article Advanced Topics: Table Layouts

Joomla Article Advanced Topics: Table Layouts Joomla Article Advanced Topics: Table Layouts An HTML Table allows you to arrange data text, images, links, etc., into rows and columns of cells. If you are familiar with spreadsheets, you will understand

More information

Creating mobile layout designs in Adobe Muse

Creating mobile layout designs in Adobe Muse Creating mobile layout designs in Adobe Muse Using Adobe Muse, you can create site layouts for web content to be displayed on desktop, smartphones, and tablets. Using the mobile design features, you can

More information

Create a Simple Website. Intel Easy Steps 1 2012 Intel Corporation All rights reserved.

Create a Simple Website. Intel Easy Steps 1 2012 Intel Corporation All rights reserved. Create a Simple Website Intel Easy Steps 1 2012 Intel Corporation Website Creating a Simple Website As more and more people are using the Internet to get information, it has become very important for businesses

More information

Web Portal User Guide. Version 6.0

Web Portal User Guide. Version 6.0 Web Portal User Guide Version 6.0 2013 Pitney Bowes Software Inc. All rights reserved. This document may contain confidential and proprietary information belonging to Pitney Bowes Inc. and/or its subsidiaries

More information

USC Aiken CMS Manual. A manual on using the basic functions of the dotcms system. Office of Marketing and Community Relations-USC Aiken

USC Aiken CMS Manual. A manual on using the basic functions of the dotcms system. Office of Marketing and Community Relations-USC Aiken USC Aiken CMS Manual A manual on using the basic functions of the dotcms system Office of Marketing and Community Relations-USC Aiken Table Of Contents Introduction/How to Use Manual... 2 Logging In...

More information

Blueball Design Dynamic Content 2 Stack Readme Manual v1.0

Blueball Design Dynamic Content 2 Stack Readme Manual v1.0 Blueball Design Dynamic Content 2 Stack Readme Manual v1.0 A unique responsive stack that dynamically populates and updates a content area within the stack using a warehoused external XML flat text file

More information

User s Guide For Department of Facility Services

User s Guide For Department of Facility Services Doc s File Server User s Guide For Department of Facility Services For Ver : 7.2.88.1020 Rev : 1_05-27-2011 Created by : Elliott Jeyaseelan 2 Table of Contents SERVER LOGIN & AUTHENTICATION REQUIREMENTS

More information

Dreamweaver and Fireworks MX Integration Brian Hogan

Dreamweaver and Fireworks MX Integration Brian Hogan Dreamweaver and Fireworks MX Integration Brian Hogan This tutorial will take you through the necessary steps to create a template-based web site using Macromedia Dreamweaver and Macromedia Fireworks. The

More information

How to Edit an Email. Here are some of the things you can do to customize your email:

How to Edit an Email. Here are some of the things you can do to customize your email: How to Edit an Email Editing a new email created during the Create an Email wizard or editing an existing email in the Edit Email section of the Manage Emails tab is easy, using editing tools you re probably

More information

NDSU Technology Learning & Media Center. Introduction to Google Sites

NDSU Technology Learning & Media Center. Introduction to Google Sites NDSU Technology Learning & Media Center QBB 150C 231-5130 www.ndsu.edu/its/tlmc Introduction to Google Sites Get Help at the TLMC 1. Get help with class projects on a walk-in basis; student learning assistants

More information

Self-Service Portal Implementation Guide

Self-Service Portal Implementation Guide Self-Service Portal Implementation Guide Salesforce, Winter 6 @salesforcedocs Last updated: October 0, 05 Copyright 000 05 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

TUTORIAL 4 Building a Navigation Bar with Fireworks

TUTORIAL 4 Building a Navigation Bar with Fireworks TUTORIAL 4 Building a Navigation Bar with Fireworks This tutorial shows you how to build a Macromedia Fireworks MX 2004 navigation bar that you can use on multiple pages of your website. A navigation bar

More information

What s New in Version 10 Details for Web Essentials

What s New in Version 10 Details for Web Essentials What s New in Version 10 Details for Web Essentials TABLE OF CONTENTS Overview... 3 Dashboard Module... 3 General Changes... 3 New Proposal... 3 Create Proposal in Word... 5 Create New Proposal in Excel...

More information

MathXL Getting Started Guide for Instructors

MathXL Getting Started Guide for Instructors MathXL Getting Started Guide for Instructors Copyright Notice Copyright 2013 by Pearson Education. All rights reserved. No part of the contents of this book may be reproduced or transmitted in any form

More information

Creating Web Pages with Microsoft FrontPage

Creating Web Pages with Microsoft FrontPage Creating Web Pages with Microsoft FrontPage 1. Page Properties 1.1 Basic page information Choose File Properties. Type the name of the Title of the page, for example Template. And then click OK. Short

More information

Terminal Four (T4) Site Manager

Terminal Four (T4) Site Manager Terminal Four (T4) Site Manager Contents Terminal Four (T4) Site Manager... 1 Contents... 1 Login... 2 The Toolbar... 3 An example of a University of Exeter page... 5 Add a section... 6 Add content to

More information

CMS Training Manual. A brief overview of your website s content management system (CMS) with screenshots. CMS Manual

CMS Training Manual. A brief overview of your website s content management system (CMS) with screenshots. CMS Manual Training A brief overview of your website s content management system () with screenshots. 1 Contents Logging In:...3 Dashboard:...4 Page List / Search Filter:...5 Common Icons:...6 Adding a New Page:...7

More information

Adobe Dreamweaver CC 14 Tutorial

Adobe Dreamweaver CC 14 Tutorial Adobe Dreamweaver CC 14 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site

More information

Administrator s Guide ALMComplete Support Ticket Manager

Administrator s Guide ALMComplete Support Ticket Manager Administrator s Guide ALMComplete Support Ticket Manager This guide provides an overview of ALMComplete s Support Manager with setup instructions. SoftwarePlanner Release 9.6.0 and higher April 2011 1

More information

An Introduction to Box.com

An Introduction to Box.com An Introduction to Box.com Box is an online file sharing and cloud content management service and it provides features such as: Security controls Space Mobility Online collaboration Mobile access Version

More information

Adding Links to Resources

Adding Links to Resources Adding Links to Resources Use the following instructions to add resource links to your Moodle course. If you have any questions, please contact the helpdesk at. Adding URL links 1. Log into your Moodle

More information

ireview Template Manual

ireview Template Manual ireview Template Manual Contents Template Overview... 2 Main features... 2 Template Installation... 3 Installation Steps... 3 Upgrading ireview... 3 Template Parameters... 4 Module Positions... 6 Module

More information

Alfresco Online Collaboration Tool

Alfresco Online Collaboration Tool Alfresco Online Collaboration Tool USER MANUAL BECOMING FAMILIAR WITH THE USER INTERFACE... 4 MY DASHBOARD... 4 MY PROFILE... 6 VIEWING YOUR FULL PROFILE... 6 EDITING YOUR PROFILE... 7 CHANGING YOUR PASSWORD...

More information

Blackboard 9.1 Basic Instructor Manual

Blackboard 9.1 Basic Instructor Manual Blackboard 9.1 Basic Instructor Manual 1. Introduction to Blackboard 9.1... 2 1.1 Logging in to Blackboard... 3 2. The Edit Mode on... 3 3. Editing the course menu... 4 3.1 The course menu explained...

More information

Blueball First Class Sandvox Designs v2.0 Works with Sandvox 2+ only!

Blueball First Class Sandvox Designs v2.0 Works with Sandvox 2+ only! Blueball First Class Sandvox Designs v2.0 Works with Sandvox 2+ only! Overview and Usage Tips For Blueball First Class Sandvox 2 Designs Thank you for purchasing one of our original Sandvox Designs bundle.

More information