المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : لشرح طريقة التسجيل في المنتدى forum لكل النتديات



salima
10-31-2013, بتوقيت غرينيتش 04:28 AM
http://www.dzbatna.com/images/icons/iconrote.gif ظ„ط´ط±ط* ط§ظ„طھط³ط¬ظٹظ„ ظپظٹ ط§ظ„ظ…ظ†طھط¯ظ‰ ظ„ظƒظ„ ط§ظ„ظ†طھط¯ظٹط§طھ (http://www.dzbatna.com/t1849007/)





السلام عليكم ورحمة الله وبركاته


أولاً صلوا على النبي صلى الله عليه وسلم

العنوان واضح وغير مفهوم اليكم صورة مثالية

http://img104.herosh.com/2014/05/02/620362604.jpg

دلوقتي الصورة وضحت كل شئ

المهم هذا الفيديو وهذا الكلام لا يظهر إلا في الصفحة الخاصة بالتسجيل فقط

تخيلوا هههههه

يلا بقى طريقة التركيب install

نبحث في القوالب

طريقة البحث في القوالب

http://www.pinyamin.com/yamin/redirect.php?id=10

أبحث عن قالب template

register

أفتح القالب template التي بهذا اللإسم فقط ولا زائد شئ ولا ينقص شئ

وشل كل ما بداخل هذا القالب template

خذ نسخة الاول وبعد ذلك

الصق الكود code التالي به وإذهب إلى التسجيل سترى كل شئ موضح أمامكم

هذا الكود code من تصميم وعمل موقع pinyamin.com

بن يمين

رمز PHP:

<code style="white-space:nowrap"> <code> $stylevar&#91;htmldoctype&#93;
<html xmlns="http://www.w3.org/1999/xhtml" dir="$stylevar&#91;textdirection&#93;" lang="$stylevar&#91;languagecode&#93;">
<!-- # pinyamin.com # -->
<head>
$headinclude
<style type="text/css">

.greenbox { border: 1px solid #337733; background: #bbffbb; color: #337733; padding: 3px; }
.redbox { border:1px solid #773333; background: #ffbbbb; color: #773333; padding: 3px; }
</style>
<title>$vboptions&#91;bbtitle&#93; - <if condition="$show&#91;'coppa'&#93;">$vbphrase&#91;coppa&#93; </if>$vbphrase&#91;registration&#93;</title>
</head>
<body>

$header



<script language="JavaScript1.2">
var rate = 20; // Increase amount(The degree of the transmutation)
////////////////////////////////////////////////////////////////////
// Main routine
if (document.getElementById)
window.onerror=new Function("return true")
var objActive; // The object which event occured in
var act = 0; // Flag during the action
var elmH = 0; // Hue
var elmS = 128; // Saturation
var elmV = 255; // Value
var clrOrg; // A color before the change
var TimerID; // Timer ID
if (document.all) {
document.onmouseover = doRainbowAnchor;
document.onmouseout = stopRainbowAnchor;
}
else if (document.getElementById) {
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
document.onmouseover = Mozilla_doRainbowAnchor;
document.onmouseout = Mozilla_stopRainbowAnchor;
}
//================================================== ===========================
// doRainbow
// This function begins to change a color.
//================================================== ===========================
function doRainbow(obj)
{
if (act == 0) {
act = 1;
if (obj)
objActive = obj;
else
objActive = event.srcElement;
clrOrg = objActive.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
//================================================== ===========================
// stopRainbow
// This function stops to change a color.
//================================================== ===========================
function stopRainbow()
{
if (act) {
objActive.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
//================================================== ===========================
// doRainbowAnchor
// This function begins to change a color. (of a anchor, automatically)
//================================================== ===========================
function doRainbowAnchor()
{
if (act == 0) {
var obj = event.srcElement;
while (obj.tagName != 'A' && obj.tagName != 'BODY') {
obj = obj.parentElement;
if (obj.tagName == 'A' || obj.tagName == 'BODY')
break;
}
if (obj.tagName == 'A' && obj.href != '') {
objActive = obj;
act = 1;
clrOrg = objActive.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
}
//================================================== ===========================
// stopRainbowAnchor
// This function stops to change a color. (of a anchor, automatically)
//================================================== ===========================
function stopRainbowAnchor()
{
if (act) {
if (objActive.tagName == 'A') {
objActive.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
}
//================================================== ===========================
// Mozilla_doRainbowAnchor(for Netscape6 and Mozilla browser)
// This function begins to change a color. (of a anchor, automatically)
//================================================== ===========================
function Mozilla_doRainbowAnchor(e)
{
if (act == 0) {
obj = e.target;
while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
obj = obj.parentNode;
if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
break;
}
if (obj.nodeName == 'A' && obj.href != '') {
objActive = obj;
act = 1;
clrOrg = obj.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
}
//================================================== ===========================
// Mozilla_stopRainbowAnchor(for Netscape6 and Mozilla browser)
// This function stops to change a color. (of a anchor, automatically)
//================================================== ===========================
function Mozilla_stopRainbowAnchor(e)
{
if (act) {
if (objActive.nodeName == 'A') {
objActive.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
}
//================================================== ===========================
// Change Color
// This function changes a color actually.
//================================================== ===========================
function ChangeColor()
{
objActive.style.color = makeColor();
}
//================================================== ===========================
// makeColor
// This function makes rainbow colors.
//================================================== ===========================
function makeColor()
{
// Don't you think Color Gamut to look like Rainbow?
// HSVtoRGB
if (elmS == 0) {
elmR = elmV; elmG = elmV; elmB = elmV;
}
else {
t1 = elmV;
t2 = (255 - elmS) * elmV / 255;
t3 = elmH % 60;
t3 = (t1 - t2) * t3 / 60;
if (elmH < 60) {
elmR = t1; elmB = t2; elmG = t2 + t3;
}
else if (elmH < 120) {
elmG = t1; elmB = t2; elmR = t1 - t3;
}
else if (elmH < 180) {
elmG = t1; elmR = t2; elmB = t2 + t3;
}
else if (elmH < 240) {
elmB = t1; elmR = t2; elmG = t1 - t3;
}
else if (elmH < 300) {
elmB = t1; elmG = t2; elmR = t2 + t3;
}
else if (elmH < 360) {
elmR = t1; elmG = t2; elmB = t1 - t3;
}
else {
elmR = 0; elmG = 0; elmB = 0;
}
}
elmR = Math.floor(elmR).toString(16);
elmG = Math.floor(elmG).toString(16);
elmB = Math.floor(elmB).toString(16);
if (elmR.length == 1) elmR = "0" + elmR;
if (elmG.length == 1) elmG = "0" + elmG;
if (elmB.length == 1) elmB = "0" + elmB;
elmH = elmH + rate;
if (elmH >= 360)
elmH = 0;
return '#' + elmR + elmG + elmB;
}
</script>



<br />

<if condition="$show&#91;'coppa'&#93;">
<div>$vbphrase&#91;until_receive_signed_form&#93;</div>
</if>

<if condition="$show&#91;'errors'&#93;">
<table class="tborder" cellpadding="$stylevar&#91;cellpadding&#93;" cellspacing="$stylevar&#91;cellspacing&#93;" border="0" width="100%" align="center">
<tr>
<td class="tcat">$vbphrase&#91;errors_occurred_during_registration&#93;</td>
</tr>
<tr>
<td class="alt1"><ul>$errorlist</ul></td>
</tr>
</table>
<p align="center">
</if><b><font size="7">
<a rel="nofollow" target="_blank" href="http://youtu.be/GYgjABOnPzo?hd=1">

<script type="text/javascript" src="clientscript/vbulletin_md5.js?v=$vboptions&#91;simpleversion&#93;"></script>
<script type="text/javascript">
function verify_passwords(password1, password2)
{
// do various checks, this will save people noticing mistakes on next page
if (password1.value == '' || password2.value == '')
{
alert('$vbphrase&#91;fill_out_both_password_fields&#93;');
return false;
}
else if (password1.value != password2.value)
{
alert('$vbphrase&#91;entered_passwords_do_not_match&#93;') ;
return false;
}
else
{
<if condition="$show&#91;'coppa'&#93;">
pass_copy = password1.value;
passconfirm_copy = password2.value;
</if>

var junk_output;

md5hash(password1, document.forms.register.password_md5, junk_output, $show&#91;nopasswordempty&#93;);
md5hash(password2, document.forms.register.passwordconfirm_md5, junk_output, $show&#91;nopasswordempty&#93;);

<if condition="$show&#91;'coppa'&#93;">
document.forms.register.password.value = pass_copy;
document.forms.register.passwordconfirm.value = passconfirm_copy;
</if>

return true;
}
return false;
}
</script>

</a></font></b></p>
<p align="center">
<b><font size="7">
<a rel="nofollow" target="_blank" href="http://youtu.be/GYgjABOnPzo?hd=1">

تعليم التسجيل من هنا بالفيديو</a></font></b></p>
<p align="center">
&nbsp;</p>
<p align="center">&nbsp;<object width="640" height="510"><param name="movie" value="https://www.youtube-nocookie.com/v/GYgjABOnPzo?fs=1&hl=ar_EG"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="https://www.youtube-nocookie.com/v/GYgjABOnPzo?fs=1&hl=ar_EG" type="application/x-shockwave-flash" width="640" height="510" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>

<form action="register.php?do=addmember" name="register" method="post" onsubmit="return verify_passwords(password, passwordconfirm);">
<input type="hidden" name="s" value="$session&#91;sessionhash&#93;" />
<input type="hidden" name="securitytoken" value="$bbuserinfo&#91;securitytoken&#93;" />
<input type="hidden" name="do" value="addmember" />
<input type="hidden" name="url" value="$url" />
<input type="hidden" name="agree" value="$agree" />
<input type="hidden" name="password_md5" />
<input type="hidden" name="passwordconfirm_md5" />
<if condition="!$show&#91;'birthday'&#93;">
<input type="hidden" name="day" value="$day" />
<input type="hidden" name="month" value="$month" />
<input type="hidden" name="year" value="$year" />
</if>
<if condition="$show&#91;'coppa'&#93;">
<input type="hidden" name="coppauser" value="1" />
</if>

<table class="tborder" cellpadding="$stylevar&#91;cellpadding&#93;" cellspacing="$stylevar&#91;cellspacing&#93;" border="0" width="100%" align="center">
<tr>
<td class="tcat"><phrase 1="$vboptions&#91;bbtitle&#93;">$vbphrase&#91;register_at_x&#93;</phrase></td>
</tr>
<tr>
<td class="panelsurround" align="center">
<div class="panel">
<div style="width:$stylevar&#91;formwidth&#93;" align="$stylevar&#91;left&#93;">

<div class="smallfont" style="margin-bottom:$stylevar&#91;formspacer&#93;px">
<phrase 1="$vboptions&#91;bbtitle&#93;">$vbphrase&#91;to_post_must_first_register&#93;</phrase>
</div>

<div class="smallfont" style="margin-bottom:$stylevar&#91;formspacer&#93;px">
<strong>$vbphrase&#91;username&#93;</strong>:<br />
<input class="bginput" id="regusername" type="text" name="username" size="50" maxlength="$vboptions&#91;maxuserlength&#93;" value="$username" /><img src="$vboptions&#91;cleargifurl&#93;" id="reg_verif_image" onclick="return toggle_collapse('dialog_box')" style="display:none;" alt="" />
<div id="collapseobj_dialog_box"><div id="reg_verif_div" style="display:none;"></div></div>
<script type="text/javascript" src="clientscript/vbulletin_ajax_nameverif.js?v=$vboptions&#91;simplever sion&#93;"></script>
<script type="text/javascript">
<!--
regname_verif = new في بي vB_AJAX_NameVerify('regname_verif', 'regusername');
//-->
</script>
</div>

<fieldset class="fieldset">
<legend>$vbphrase&#91;password&#93;</legend>
<table cellpadding="0" cellspacing="$stylevar&#91;formspacer&#93;" border="0" width="400">
<tr>
<td colspan="2">$vbphrase&#91;enter_password_for_account&#93;</td>
</tr>
<tr>
<td>
$vbphrase&#91;password&#93;:<br />
<input type="password" class="bginput" name="password" size="25" maxlength="50" value="$password" />
</td>
<td>
$vbphrase&#91;confirm_password&#93;:<br />
<input type="password" class="bginput" name="passwordconfirm" size="25" maxlength="50" value="$passwordconfirm" />
</td>
</tr>
</table>
</fieldset>

<fieldset class="fieldset">
<legend>$vbphrase&#91;email_address&#93;</legend>
<table cellpadding="0" cellspacing="$stylevar&#91;formspacer&#93;" border="0" width="400">
<tr>
<td colspan="2">$vbphrase&#91;enter_valid_email_address&#93;</td>
</tr>
<tr>
<td>
$vbphrase&#91;email_address&#93;:<br />
<input type="text" class="bginput" name="email" size="25" maxlength="50" value="$email" dir="ltr" />
</td>
<td>
$vbphrase&#91;confirm_email_address&#93;:<br />
<input type="text" class="bginput" name="emailconfirm" size="25" maxlength="50" value="$emailconfirm" dir="ltr" />
</td>
</tr>
<if condition="$show&#91;'coppa'&#93;">
<tr>
<td>$vbphrase&#91;if_under_13_provide_parent&#93;</td>
</tr>
<tr>
<td>
$vbphrase&#91;parent_guardian_email&#93;:<br />
<input type="text" class="bginput" name="parentemail" size="25" maxlength="50" value="$parentemail" dir="ltr" />
</td>
</tr>
</if>
</table>
</fieldset>

$human_verify

</div>
</div>
</td>
</tr>
</table>
<br />

<if condition="$show&#91;'customfields_profile'&#93;">
<table class="tborder" cellpadding="$stylevar&#91;cellpadding&#93;" cellspacing="$stylevar&#91;cellspacing&#93;" border="0" width="100%" align="center">
<tr>
<td class="thead">$vbphrase&#91;additional_required_information_profile&#93;</td>
</tr>
<tr>
<td class="panelsurround" align="center">
<div class="panel">
<div style="width:$stylevar&#91;formwidth&#93;" align="$stylevar&#91;left&#93;">

$customfields_profile

<if condition="$show&#91;'birthday'&#93;">$birthdayfields</if>

</div>
</div>
</td>
</tr>
</table>
<br />
</if>

<if condition="$show&#91;'customfields_option'&#93;">
<table class="tborder" cellpadding="$stylevar&#91;cellpadding&#93;" cellspacing="$stylevar&#91;cellspacing&#93;" border="0" width="100%" align="center">
<tr>
<td class="thead">$vbphrase&#91;additional_required_information_option&#93;</td>
</tr>
<tr>
<td class="panelsurround" align="center">
<div class="panel">
<div style="width:$stylevar&#91;formwidth&#93;" align="$stylevar&#91;left&#93;">

$customfields_option

</div>
</div>
</td>
</tr>
</table>



<br />
</if>

<table class="tborder" cellpadding="$stylevar&#91;cellpadding&#93;" cellspacing="$stylevar&#91;cellspacing&#93;" border="0" width="100%" align="center">
<tr>
<td class="thead">$vbphrase&#91;additional_information&#93;</td>
</tr>
<tr>
<td class="panelsurround" align="center">
<div class="panel">
<div style="width:$stylevar&#91;formwidth&#93;" align="$stylevar&#91;left&#93;">

<if condition="$show&#91;'referrer'&#93;">
<fieldset class="fieldset">
<legend>$vbphrase&#91;referrer&#93;</legend>
<table cellpadding="0" cellspacing="$stylevar&#91;formspacer&#93;" border="0" width="100%">
<tr>
<td><phrase 1="$vboptions&#91;bbtitle&#93;">$vbphrase&#91;if_referred_enter_name&#93;</phrase></td>
</tr>
<tr>
<td>
$vbphrase&#91;referrer&#93;:<br />
<div id="referrerfield"><input id="referrerfield_txt" type="text" class="bginput" name="referrername" value="$referrername" size="50" maxlength="$vboptions&#91;maxuserlength&#93;" /></div>
<if condition="$show&#91;'popups'&#93;">
<div id="referrerfield_menu" class="vbmenu_popup" style="display:none; z-index:50"></div>
<script type="text/javascript" src="clientscript/vbulletin_ajax_namesugg.js?v=$vboptions&#91;simplevers ion&#93;"></script>
<script type="text/javascript">
<!--
vbmenu_register('referrerfield', true);
rnc = new في بي vB_AJAX_NameSuggest('rnc', 'referrerfield_txt', 'referrerfield');
rnc.allow_multiple = false;
//-->
</script>
</if>
</td>
</tr>
</table>
</fieldset>
</if>

$timezoneoptions

<fieldset class="fieldset">
<legend>$vbphrase&#91;receive_email&#93;</legend>
<table cellpadding="0" cellspacing="$stylevar&#91;formspacer&#93;" border="0" width="100%">
<tr>
<td>
$vbphrase&#91;administrators_may_send_email&#93;
</td>
</tr>
<tr>
<td><label for="cb_adminemail"><input type="checkbox" name="options&#91;adminemail&#93;" value="1" id="cb_adminemail" $checkedoff&#91;adminemail&#93; />$vbphrase&#91;receive_email_from_bulletin_board_staff&#93;</label></td>
</tr>
<if condition="$show&#91;'email'&#93;">
<tr>
<td>$vbphrase&#91;allow_members_send_you_email&#93;</td>
</tr>
<tr>
<td><label for="cb_showemail"><input type="checkbox" name="options&#91;showemail&#93;" value="1" id="cb_showemail" $checkedoff&#91;showemail&#93; />$vbphrase&#91;receive_email_from_other_members&#93;</label></td>
</tr>
</if>
</table>
</fieldset>


$customfields_other

</div>
</div>

<div style="margin-top:$stylevar&#91;cellpadding&#93;px">
<input type="submit" class="button" value="$vbphrase&#91;complete_registration&#93;" accesskey="s" />
<input type="reset" class="button" name="Reset" value="$vbphrase&#91;reset_fields&#93;" />
</div>
</td>
</tr>
</table>

</form>
<!-- # pinyamin.com # -->
$footer

</body>
</html>
</code> </code>

وبكدا نكون بإذن الله قد توصلنا لنهاية الكود code لا تنسونا من صالح دعائكم

الموضوع الأصلي: لشرح طريقة التسجيل في المنتدى forum لكل النتديات (http://www.pinyamin.com/islam/showthread.php?t=103) || الكاتب: عبقرينو (http://www.pinyamin.com/islam/member.php?u=18)

هذا الموضوع منقول للفائدة فقط من يحتسب أي شئ عن الموضوع انه غير للفائدة فأرجو إغلاق الموضوع إن كان غير ذلك

لتعم الفائدة على الجميع بالتوفيق جميعاً







ألعاب الأندرويد مجانا و حصريا (http://www.apotox.info/forum)



https://fbcdn-sphotos-d-a.akamaihd.net/hphotos-ak-ash4/482113_236967293114455_1193518507_n.png (http://www.dzbatna.com)
©المشاركات المنشورة تعبر عن وجهة نظر صاحبها فقط، ولا تُعبّر بأي شكل من الأشكال عن وجهة نظر إدارة المنتدى (http://www.dzbatna.com)©

استعمل مربع البحث في الاسفل لمزيد من المواضيع


سريع للبحث عن مواضيع في المنتدى