Blame Extras/Puntal/themes/punbb/blog/form.php

4c79b5
4c79b5
/***********************************************************************
4c79b5

4c79b5
  Copyright (C) 2005-2007 Vincent Garnier and contributors. All rights
4c79b5
  reserved.
4c79b5
  
4c79b5
  This file is part of Puntal 2.
4c79b5

4c79b5
  Puntal 2 is free software; you can redistribute it and/or modify it
4c79b5
  under the terms of the GNU General Public License as published
4c79b5
  by the Free Software Foundation; either version 2 of the License,
4c79b5
  or (at your option) any later version.
4c79b5

4c79b5
  Puntal 2 is distributed in the hope that it will be useful, but
4c79b5
  WITHOUT ANY WARRANTY; without even the implied warranty of
4c79b5
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4c79b5
  GNU General Public License for more details.
4c79b5

4c79b5
  You should have received a copy of the GNU General Public License
4c79b5
  along with this program; if not, write to the Free Software
4c79b5
  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
4c79b5
  MA  02111-1307  USA
4c79b5

4c79b5
************************************************************************/
4c79b5

4c79b5
/*
4c79b5
	Original file by Olivier Meunier and contributors from 
4c79b5
	DotClear project. http://www.dotclear.net/
4c79b5
*/
4c79b5
?>
4c79b5

4c79b5

'.tpl::lang('Error', true).'

%s'); ?>
4c79b5
%s

'); ?>
4c79b5

4c79b5
<form action="<?php blog::dcPostUrl(); ?>" method="post" id="comment-form">
4c79b5
	
4c79b5
	<fieldset>
4c79b5
		

<label for="c_nom"></label>

4c79b5
		
4c79b5
		value="" />
4c79b5
		

4c79b5
	
4c79b5
		

<label for="c_mail"> ()</label>

4c79b5
		
4c79b5
		value="" />
4c79b5
		

4c79b5
	
4c79b5
		

<label for="c_site"> ()</label>

4c79b5
		
4c79b5
		value="" />
4c79b5
		

4c79b5
		
4c79b5
		

<label for="c_content"></label>

4c79b5
		<textarea name="c_content" id="c_content" cols="35" rows="7">
4c79b5
		blog::dcCommentFormValue('c_content');
4c79b5
		?></textarea>
4c79b5
		

4c79b5
4c79b5
require_once PT_INC_PATH.'libs/puntoolbar_smilies.php'; 
4c79b5
$ptb = new puntoolbarSmilies($puntal);
4c79b5
echo $ptb->generatePtb('c_content');
4c79b5
?>	</fieldset>
4c79b5
	
4c79b5
	

4c79b5
    
4c79b5
    	<fieldset>
4c79b5
        <legend></legend>
4c79b5
        

<label>

4c79b5
        <input name="captcha" id="captcha" type="text" size="5" maxlength="10" />
4c79b5
        <input name="captcha_q" value="<?php echo blog::blogCaptchaEncoded() ?>" type="hidden" />
</label>

4c79b5
        </fieldset>
4c79b5
    	
4c79b5
	<fieldset>	
4c79b5
		

<input type="checkbox" id="c_remember" name="c_remember" />

4c79b5
		<label for="c_remember"></label>

4c79b5
		
4c79b5
		

<input type="submit" class="submit" name="preview" value="<?php tpl::lang('Preview') ?>" />

4c79b5
		<input type="submit" class="submit" value="<?php tpl::lang('Add') ?>" />
4c79b5
		<input type="hidden" name="redir" value="<?php blog::dcCommentFormRedir(); ?>" />
4c79b5
		<input type="hidden" name="ptkn" value="<?php echo tpl::pTkn(); ?>" />

4c79b5
	</fieldset>
4c79b5
	
4c79b5
</form>