コード例 #1
0
ファイル: index.php プロジェクト: tronsha/hades
        <span id="user-button" class="fa fa-users" title="user"></span>
        <span id="media-button" class="fa fa-folder-open" title="media"></span>
        <span id="list-button" class="fa fa-file" title="list"></span>
        <span id="option-button" class="fa fa-cogs" title="options"></span>
        <span id="info-button" class="fa fa-info" title="info"></span>
        <span id="logout-button" class="fa fa-sign-out" title="logout"></span>
    </div>
    <div class="submit">
        <span id="send-button" class="fa fa-send" title="submit"></span>
    </div>
</div>
<div id="overlay" class="overlay"></div>
<div id="infobox" class="box"></div>
<div id="optionbox" class="box">
    <div><h2><?php 
echo $hades->__('options');
?>
</h2></div>
    <fieldset>
        <legend><?php 
echo $hades->__('theme');
?>
</legend>
        <ul>
            <li><input id="theme-default" name="theme" type="radio" value="default" checked><label for="theme-default"><?php 
echo $hades->__('default theme');
?>
</label></li>
            <li><input id="theme-dark" name="theme" type="radio" value="dark"><label for="theme-dark"><?php 
echo $hades->__('dark theme');
?>
コード例 #2
0
ファイル: login.php プロジェクト: tronsha/hades
}
?>
<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title>Login - Hades</title>
    <meta name="description" content="Hades, master of Cerberus">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link href="css/style.min.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="login">
    <h1><?php 
echo $hades->__('login');
?>
</h1>
    <div>
        <form action="./login.php" method="post">
            <input name="username" placeholder="<?php 
echo $hades->__('username');
?>
" type="text">
            <input name="password" placeholder="<?php 
echo $hades->__('password');
?>
" type="password">
            <input type="submit" value="<?php 
echo $hades->__('submit');
?>