feat : Front Page [Ver 0.1]
This commit is contained in:
34
public/html/inc/header.php
Normal file
34
public/html/inc/header.php
Normal file
@@ -0,0 +1,34 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ko">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>작업 지시 생성</title>
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
|
||||
<style>
|
||||
body { padding-bottom: 60px; }
|
||||
.page-header h2 { margin-top: 0; }
|
||||
.table > thead > tr > th, .table > tbody > tr > td { vertical-align: middle; }
|
||||
.form-inline .form-group { margin-right: 8px; }
|
||||
.help-note { color:#777; font-size:12px; }
|
||||
.table-fixed thead tr th { background:#f9f9f9; }
|
||||
.panel-heading .btn { margin-left:5px; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-default">
|
||||
<div class="container-fluid">
|
||||
<div class="navbar-header">
|
||||
<a class="navbar-brand" href="?page=home">SAM </a>
|
||||
<a class="navbar-brand" href="?page=processes">생산관리</a>
|
||||
</div>
|
||||
<ul class="nav navbar-nav">
|
||||
<li class="<?=($page=='processes')?'active':''?>"><a href="?page=processes">공정</a></li>
|
||||
<li class="<?=($page=='tasks')?'active':''?>"><a href="?page=tasks">작업</a></li>
|
||||
<li class="<?=($page=='process_settings')?'active':''?>"><a href="?page=process_settings">작업지시 설정</a></li>
|
||||
<li class="<?=($page=='job_order_form')?'active':''?>"><a href="?page=job_order_form">작업지시 생성</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container">
|
||||
Reference in New Issue
Block a user