33 lines
1.2 KiB
PHP
33 lines
1.2 KiB
PHP
<?= $this->extend('layouts/empty') ?>
|
|
<?= $this->section('content') ?>
|
|
<?= form_open(url_to('signup'), $forms['attributes'], $forms['hiddens']) ?>
|
|
<div style="width:799px; height:283px;
|
|
margin:auto;
|
|
padding-top:150px;
|
|
padding-left:300px;
|
|
color:white;
|
|
background-image:url('/images/common/adminbg.png');">
|
|
<table>
|
|
<tr>
|
|
<td style="text-align:right;">
|
|
<div style="padding:5px;">계정 <input type="text" name="id" value="<?= old('id') ?>"></div>
|
|
<div style="padding:5px;">암호 <input type="password" name="passwd" value="<?= old('passwd') ?>"></div>
|
|
</td>
|
|
<td style="text-align:left;">
|
|
<input type="submit" style="width:57px; height:60px; background:url('/images/common/btn_login.png');" value="">
|
|
</td>
|
|
<td style="text-align:left;">
|
|
<?php foreach ($login_buttons as $key => $login_button) : ?>
|
|
<?= $login_button ?>
|
|
<?php endforeach ?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="3" style="text-align:center;">
|
|
<?= session()->getFlashdata('error') ?: "" ?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<?= form_close(); ?>
|
|
<?= $this->endSection() ?>
|