Custom Sign-in and Sign-out
I've had a number of users ask me "how do I sign-out" when the sign-out link is clearly on the upper right of the page. To make it more obvious, you can use this bit of code to make a sign-out button on the top of any HTML view. You can customize the serviceurl as needed.
- <a class="zc-formbutton" style="padding: 5px;font-size:12px;" href="https://accounts.zoho.com/logout?serviceurl=https://creator.zoho.com/<%=zoho.adminuser%>/<%=zoho.appname%>/">Sign-Out</a>
And since we're on this topic, you can also use this iframe to add a ZOHO sign-in form.
- <iframe height="200" width="335" style="background-color:#F6F6FF;border:1px solid #9CBADE;margin:5% 0% 4% 0%;padding:18px 5px 0px 5px;" name="zohoiam" frameborder="0" scrolling="no"
- src="https://accounts.zoho.com/login?servicename=ZohoCreator&serviceurl=https://creator.zoho.com/appcreator/jsp/showapp.jsp?appurl=/<%=zoho.adminuser%>/<%=zoho.appname%>/&zc_component=View:LISTMAN&&hide_signup=true&hide_gsignup=true"></iframe>
I hope this is useful to others.
John M. Whitney