أهلا وسهلا بك زائرنا الكريم في منتدى دعم PBBoard الرسمي، لكي تتمكن من المشاركة ومشاهدة جميع أقسام المنتدى وكافة الميزات ، يجب عليك إنشاء حساب جديد بالتسجيل بالضغط هنا أو تسجيل الدخول اضغط هنا إذا كنت عضواً .

مدموج :login box ?

Hi. I pbboard user . I wonder themes and how the input box. Sample Pbboarddestek.com الموضوع مدموج من مواضيع متعدّدة


موضوع مغلق


03-05-2014 02:55 مساءً
معلومات الكاتب ▼
تاريخ الإنضمام : 16-04-2014
رقم العضوية : 5309
المشاركات : 4
الجنس :
تاريخ الميلاد : 2-2-1974
قوة السمعة : 0
موقعي : زيارة موقعي
Hi. I pbboard user . I wonder themes and how the input box. Sample


Pbboarddestek.com
الموضوع مدموج من مواضيع متعدّدة

look/images/icons/i1.gif [مجابه] مدموج :login box ?
  03-05-2014 03:26 مساءً   [1]
معلومات الكاتب ▼
تاريخ الإنضمام : 24-03-2013
رقم العضوية : 3239
المشاركات : 18
الجنس :
تاريخ الميلاد : 14-6-1992
قوة السمعة : 200
You can place login box where you want just must place good patch ( action="index.php?page=loginz&login=1")
box code:
CODE

	
<form method="post" action="index.php?page=loginz&login=1">
<span class="input-group-addon"><input type="text" class="login_input" name="username" value="{$lang['username']}" onfocus="if (this.value == '{$lang['username']}') this.value = '';" size="12"  /></span> 
<span class="input-group-addon"><input type="password" class="login_input" name="password" value="pass" onfocus="if (this.value == 'pass') this.value = '';" size="12"/></span> 
<input type="submit" class="submit_login" value="{$lang['login']}" />
<span class="full_inb"> <input type="checkbox" name="temporary" value="on" id="fp1" />  {$lang['Temp_login']}</span>  
</form>   

For example :bootstrap modal window
kuq9x5

just use JS

look/images/icons/i1.gif [مجابه] مدموج :login box ?
  03-05-2014 04:42 مساءً   [2]
معلومات الكاتب ▼
تاريخ الإنضمام : 16-04-2014
رقم العضوية : 5309
المشاركات : 4
الجنس :
تاريخ الميلاد : 2-2-1974
قوة السمعة : 0
موقعي : زيارة موقعي
Hello . the most pbboard person. The theme of my input on how I add a box I want to learn
Sample:www.pbboarddestek.com

help me please

look/images/icons/i1.gif [مجابه] مدموج :login box ?
  03-05-2014 11:25 مساءً   [3]
معلومات الكاتب ▼
تاريخ الإنضمام : 24-03-2013
رقم العضوية : 3239
المشاركات : 18
الجنس :
تاريخ الميلاد : 14-6-1992
قوة السمعة : 200
ehhh
just create modal windows and link to it using button
modal window must be in <form>
https://jqueryui.com/dialog/#modal-form
t
here no another way to create it

look/images/icons/i1.gif [مجابه] مدموج :login box ?
  04-05-2014 01:24 مساءً   [4]
معلومات الكاتب ▼
تاريخ الإنضمام : 16-04-2014
رقم العضوية : 5309
المشاركات : 4
الجنس :
تاريخ الميلاد : 2-2-1974
قوة السمعة : 0
موقعي : زيارة موقعي
kuq9x5


nice theme. Deploy? I Would Like The Translation In Turkish

look/images/icons/i1.gif [مجابه] مدموج :login box ?
  04-05-2014 03:57 مساءً   [5]
معلومات الكاتب ▼
تاريخ الإنضمام : 27-11-2012
رقم العضوية : 2642
المشاركات : 3231
الدولة : morocco
الجنس :
تاريخ الميلاد : 1-1-1987
الدعوات : 6
قوة السمعة : 18750
hi dear,

add this code
CODE

	{if !{$_CONF['member_permission']}}
	<link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
	<style>
	.ui-widget {
	top:20% !important;
	}
	.ui-widget-content{
	display: none;
	}
	</style>
	<script>
	function Login()
	{
	$(function() {
	$( "#dialog" ).dialog();
	});}
	</script>
	
	<div id="dialog" class="ui-dialog-content ui-widget-content" title="{$lang['Login_mem']}">
	<form method="post" action="index.php?page=login&login=1">
	<div style="margin:5px;">
	<input type="text" class="login_input" name="username" value="{$lang['username']}" onfocus="if (this.value == '{$lang['username']}') this.value = '';" size="12"  />
	</div>
	<div style="margin:5px;">
	<input type="password" class="login_input" name="password" value="pass" onfocus="if (this.value == 'pass') this.value = '';" size="12"/>
	</div>
	<div class="full_inb">
	<input type="checkbox" name="temporary" value="on" id="fp1" />  
	{$lang['Temp_login']}
	</div>  
	
	<div dir="ltr"><input type="submit" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" value="{$lang['login']}" />
	</div>
	</form>
	</div>
	{/if}
	


in template "header" before
CODE
<!-- action_find_addons_1 -->
<!-- action_find_addons_1 --><!-- action_find_addons_1 -->

and add this code
CODE

	{if !{$_CONF['member_permission']}}
	<a onclick="Login()">{$lang['Login_mem']}</a>
	{/if}
	


In the place that you want to appear the link "login"
<< example: in the tepmlate main_bar >>

ـــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــ

rules of PBBoard : please add your forum in Personal information in the box "Website"


تم تحرير المشاركة بواسطة :Mr King بتاريخ:05-05-2014 09:55 صباحاً


look/images/icons/i1.gif [مجابه] مدموج :login box ?
  15-05-2014 03:03 صباحاً   [6]
معلومات الكاتب ▼
تاريخ الإنضمام : 27-11-2012
رقم العضوية : 2642
المشاركات : 3231
الدولة : morocco
الجنس :
تاريخ الميلاد : 1-1-1987
الدعوات : 6
قوة السمعة : 18750
السلام عليكم ورحمة الله وبركاته ،،
تم غلق الموضوع لأحد الأسباب التالية:
  1. تم حل المشكلة والحمد لله.
  2. بقاء الموضوع لمدة 3 أيام بدون الرد عليه أو وجود إشارة تدل على رجوع العضو إليه.
  3. لا يوجد حل لهذه المشكلة (إذا وجد الحل سوف يتم إعادة فتح الموضوع).
عزيزي العضو حرصا على عدم تداخل المواضيع ببعضها وبالتالي صعوبة إستخدام عملية البحث بالنسبة للأعضاء قررت إدارة المنتديات بإغلاق المواضيع التي تتوافق مع الأسباب السابقة. بإمكانك بدأ موضوع جديد أو مراسلة أحد المشرفين إن كنت متأكد من رغبتك في الإستمرار .

إدارة المنتديات،،



المواضيع المتشابهه
عنوان الموضوع الكاتب الردود الزوار آخر رد
[مجابه] اجد صعوبه في تنسيق الصور في الموضوع و تحميل الصور جنرال الحب
5 197 Soliman
[مجابه] مشكلة HardBoy
3 623 Soliman
[مجابه] تغير دومين moustafa el desha
7 1628 Soliman
[مجابه] احصائيات المنتدى (المتواجدين اليوم) العراقي
3 988 Mr King
[مجابه] ارجو دخول المحترفين في صنع منتدى والخ . SenioR
11 1550 Soliman

الكلمات الدلالية
لا يوجد كلمات دلالية ..









الساعة الآن 05:39 PM