ログイン (テンプレートリファレンス)/ref_temp/record/rv_contents_login
定数
ページ定数 | |||||||
---|---|---|---|---|---|---|---|
$page | . | resource_type | リソースタイプ | ||||
. | url | URL | |||||
. | url_path | URLパス | |||||
. | title | タイトル | |||||
. | error | ログインエラーフラグ ($page.error == 1 : ログインエラー発生) |
|||||
. | action | フォーム送信先URL | |||||
ログインフォーム | |||||||
ログインID | |||||||
. | form | . | _login_id | . | name | フィールド名 | |
. | input | 入力ボックスタグ | |||||
. | data_type | フィールドデータ型 | |||||
. | notnull | 入力必須フラグ | |||||
. | placeholder | プレースホルダー | |||||
. | error | エラーメッセージ | |||||
パスワード | |||||||
. | _password | . | name | フィールド名 | |||
. | input | 入力ボックスタグ | |||||
. | data_type | フィールドデータ型 | |||||
. | notnull | 入力必須フラグ | |||||
. | placeholder | プレースホルダー | |||||
. | error | エラーメッセージ |
サイト定数 | |||||||||
---|---|---|---|---|---|---|---|---|---|
$site | . | title | サイトタイトル | ||||||
. | description | 概要 | |||||||
. | keywords | キーワード | |||||||
. | robots | 検索エンジンロボット制御 | |||||||
. | header_logo | ヘッダーロゴ画像URL | |||||||
. | footer_text | フッター文 | |||||||
. | favicon | faviconURL | |||||||
ウィジェット定数 | |||||||||
$widgets | . | {ウィジェットID} | ウィジェット | ||||||
ダッシュボード定数 | |||||||||
$dashbords | . | {ダッシュボードID} | ダッシュボード | ||||||
ログインメンバー定数 | |||||||||
$members | . | {メンバーインスタンスID} | . | refid | メンバーID | ||||
. | resource_type | リソースタイプ | |||||||
. | url | メンバーURL | |||||||
. | url_path | メンバーURLパス | |||||||
. | login_id | ログインID | |||||||
. | contents | . | {フィールドID} | メンバーコンテンツ | |||||
所属グループ | |||||||||
. | groups | . | {i} | . | refid | グループID | |||
. | name | グループ名 | |||||||
. | created | 作成日時 | |||||||
. | last_logined | 最終ログイン日時 |
プロトタイプ
<div class="jumbotron">
<h2>{?$page.title?}</h2>
</div>
<div class="panel panel-default col-xs-10 col-xs-offset-1">
<div class="panel-body">
<form action="{?$page.action?}" method="post" class="form-horizontal" novalidate>
{?if $page.error?}<div class="alert alert-danger">ログインできませんでした.</div>{?/if?}
<div class="form-group">
<label class="col-sm-5 control-label">ID</label>
<div class="col-sm-7">{?$page.form._login_id.input?}</div>
</div>
<div class="form-group">
<label class="col-sm-5 control-label">Password</label>
<div class="col-sm-7">{?$page.form._password.input?}</div>
</div>
<div class="form-group">
<div class="text-center">
<button type="submit" class="btn btn-primary">ログイン</button>
</div>
</div>
</form>
</div>
</div>