main.html
851 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset=utf-8">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/site.css">
<title>Main</title>
</head>
<body>
<div class="navigation_main">
<a href="/logout"><button type="button" class="btn btn-primary">Logout</button></a>
<a href="/main"><button type="button" class="btn btn-primary">search</button></a>
<a href="/mypage"><button type="button" class="btn btn-primary">myPage</button></a>
<a href="/timetable"><button type="button" class="btn btn-primary">mySchedule</button></a>
</div>
<div class="contents_main">
<h1>This is main</h1>
<form method="GET" action="/samename">
<input type="text" name="samename">
<button type="submit" class="btn btn-info">search</button>
</form>
</div>
</body>
</html>