A licensing question
Posted: Mon Apr 25, 2011 6:01 pm
Two years ago I used CMSMS to make a website for a client. I decided to create a quick way to log in to the admin area and search the site by using the following code
Some of the form html code initially came from the the login page html and was integrated into the template. Does this require the website to be released under the GPL? The reason I ask is that some of the images used on the site have licenses which could conflict with the GPL.
Code: Select all
<div id="login">
<div id="loginbox2" onclick="showLogin(true)">
</div>
<div id="loginbox">
<form method="post" action="http://<web address>/admin/login.php">
<input name="rememberme" value="0" type="hidden" />
<fieldset>
<label for="username" class="top">
User:
</label>
<input name="username" id="username_1" tabindex="1" class="field" value="" type="text" />
<label for="password_1" class="top">
Password:
</label>
<input name="password" id="password_1" tabindex="2" class="field" value="" type="password" /><input name="loginsubmit" class="button" value="LOGIN" type="submit" />
</fieldset>
</form>
<form id="cntnt01moduleform_1" method="get" action="index.php">
<div class="hidden">
<input name="mact" value="Search,cntnt01,dosearch,0" type="hidden" /><input name="cntnt01returnid" value="15" type="hidden" />
</div>
<fieldset>
<input name="cntnt01searchinput" size="20" maxlength="50" onfocus="if(this.value==this.defaultValue) this.value='';" onblur="if(this.value=='') this.value=this.defaultValue;" class="field" value=" Search..." /><input name="submit" class="button" value="GO!" type="submit" /><a href="javascript:showLogin(false)" style="padding-left: 10px; color: white;">close</a>
</fieldset>
</form>
</div>
</div>