user login user login
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

user login

Started by fbattikha, March 24, 2005, 06:15:58 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

fbattikha

Hey guys, i've made a page in html, and i've place a login area on it, how can i make it integrate with coppermine?
help is greatly appreceated ;)

sabrewolf

I don't know if you have already solved this issue, but if you have put a login on your html page i assume you have used the <form> tag. In which case, you only have to make sure that the fields are named correctly and that the form points to login.php (wherever it's located) The textfields need to be named "username" and "password", not really nuclear science there, and the submit button needs to be named "submitted". If you want to use a custom gif as your submit button you could use the <style> tag, example posted here:   

<input name="submitted" type="submit" id="submitted"  style="background-image:url(yourimage.gif); width:15px; height:16px; border:0; color:#036;font-family: Verdana; font-weight: bold;" value="" /> //or something like it...

Hope this helps you or someone else :-)




Joachim Müller

just go to coppermine's login page, view the html output (not the source code of login.php, but the html output it generates) and copy'n paste the stuff between <form ...> and </form> into your html page.