Blame Identity/Webenv/Puntal/themes/punbb/blog/form.php

ef5584
ef5584
/***********************************************************************
ef5584

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

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

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

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

ef5584
************************************************************************/
ef5584

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

ef5584

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

%s'); ?>
ef5584
%s

'); ?>
ef5584

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

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

ef5584
		
ef5584
		value="" />
ef5584
		

ef5584
	
ef5584
		

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

ef5584
		
ef5584
		value="" />
ef5584
		

ef5584
	
ef5584
		

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

ef5584
		
ef5584
		value="" />
ef5584
		

ef5584
		
ef5584
		

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

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

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

ef5584
    
ef5584
    	<fieldset>
ef5584
        <legend></legend>
ef5584
        

<label>

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

ef5584
        </fieldset>
ef5584
    	
ef5584
	<fieldset>	
ef5584
		

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

ef5584
		<label for="c_remember"></label>

ef5584
		
ef5584
		

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

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

ef5584
	</fieldset>
ef5584
	
ef5584
</form>