QuickBase is web based so much of what we would like to customize with QuickBase can be done using basic html.
For instance if you want to add a custom QuickBase login right on one of your company’s web pages, you can do it by adding some simple html code to produce the following form.
This is a live form embedded into this webpage. Try logging in.
This is the basic code that was pasted into this website:
<html>
<body>
<form name="mainform" action="https://www.quickbase.com/db/main?act=api_authenticate" method="post">
<input type="hidden" value="https://www.quickbase.com/db/main?a=myqb" name="rdr">
<input type="hidden" name="NextURL" />
Login:<br /><input name="username">
<br />Password:<br /><input type="password" name="password">
<input type="submit" value="Enter" />
</form>
</body>
</html>
<body>
<form name="mainform" action="https://www.quickbase.com/db/main?act=api_authenticate" method="post">
<input type="hidden" value="https://www.quickbase.com/db/main?a=myqb" name="rdr">
<input type="hidden" name="NextURL" />
Login:<br /><input name="username">
<br />Password:<br /><input type="password" name="password">
<input type="submit" value="Enter" />
</form>
</body>
</html>
You can find out more about embedding forms by attending any of our 10 weekly live webinars or visiting our Community Forum, On Line Help and Knowledgebase.

