統計
| ブランチ: | リビジョン:

pictcode / app / View / users / register.ctp @ db36f2d4

履歴 | 表示 | アノテート | ダウンロード (2.631 KB)

1 04e657a7 root
<main role="main">
2
		<article class="register">
3
			<h2>
4
				<img src="/img/img_h1_register01.png" alt="PictCode登録 - 情報入力">
5
			</h2>
6
			<ol>
7
			<li id="navigator01_on"></li>
8
			<li id="navigator02_off"></li>
9
			<li id="navigator03_off"></li>
10
			<li id="navigator04_off"></li>
11
			</ol>
12
			<p class="">PictCodeに新規登録を行います。登録の際にはご両親の付き添い、または管理のもと、お間違いのないよう入力を行ってください。</p>
13
			<div id="contents">
14
			<?php echo $this->Form->create('User',array(
15
										'div' => false,
16 8b8631af hasse
										'novalidate' => true,
17
										'inputDefaults' => array(
18
									        'before'  => '<dt>',
19
									        'between' => '</dt><dd>',
20
									        'after' => '</dd>',
21
									        'div' => false
22
									        )
23 04e657a7 root
										)); ?>
24
				<fieldset>
25
					<section>
26 304d523f hasse
						<dl class="register_form">
27 04e657a7 root
							<?php
28 8b8631af hasse
								echo $this->Form->input('login_id',
29 04e657a7 root
									array( 'type' => 'text',
30 8b8631af hasse
											'label' => 'ニックネーム',
31 04e657a7 root
											'placeholder'=>'ニックネーム'
32
										));
33 8b8631af hasse
								echo $this->Form->input('password',
34 04e657a7 root
									array( 'placeholder'=>'パスワード',
35 8b8631af hasse
											'label' => 'パスワード',
36 04e657a7 root
											'maxlength' => '50',
37
											'type' => 'password'
38
										));
39 8b8631af hasse
								 echo $this->Form->input('password_confirm',
40 04e657a7 root
								  	array( 'placeholder'=>'パスワード(確認用)',
41 8b8631af hasse
											'label' => 'パスワード(確認用)',
42 04e657a7 root
								  		 'maxlength' => '50', 
43
								  		  'type' => 'password'
44
								  		));
45 8b8631af hasse
								echo $this->Form->input( 'email',
46
									array('placeholder'=>'メールアドレス',
47
											'label' => 'メールアドレス',
48 04e657a7 root
											'maxlength' => '255',
49
								 			'type' => 'email'));
50 b3a58ce1 hasse
							//キャプチャコード (recapcha)		
51
								// echo $this->Recaptcha->display(array(
52
								// 	    'recaptchaOptions' => array(
53
								// 			 'theme' => 'blackglass'
54
								// 			 )
55
								// 		 ));
56 8b8631af hasse
								echo $this->Form->input('user_flg',
57
								 	array(	'type' => 'hidden',
58
										 	'value' => 0,	
59
								 		));
60
								echo $this->Form->input('status',
61
								 	array(	'type' => 'hidden',
62
										 	'value' => 0,	
63
								 		));
64 04e657a7 root
							?>
65
						</dl>
66
					</section>
67
				</fieldset>
68
			</div>
69
				<section class="button_area01">
70
					<a href="javascript:history.back();">
71
						<p class="button btn_back01"></p>
72
					</a>
73 8b8631af hasse
				<?php  echo $this->Form->submit('',array('class'=>'button btn_check01')); ?>
74
				<?php  echo $this->Form->end(); ?>
75
<!-- 					<a href="/users/confirm">
76 04e657a7 root
						<p class="button btn_check01"></p>
77
					</a>
78 8b8631af hasse
 -->				</section>
79 04e657a7 root
		</article>
80
	</main>
81
82
83