Add: register, faq

This commit is contained in:
2018-06-26 15:20:48 +09:00
parent 6f55881e9b
commit 64b37549ad
11 changed files with 427 additions and 35 deletions
+48
View File
@@ -0,0 +1,48 @@
<html>
<head>
<title>마에스트로 계정 등록</title>
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="./../css/module.css">
<link rel="stylesheet" type="text/css" href="./../css/color_button.css">
<script type="text/javascript" src="./../../../resources/jquery/jquery-3.3.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#home").click(function(event) {
console.log("home clicked");
})
$("#header").load("./../module/header.html");
$("#section").load("./../module/maestro_section_register.html");
$("#footer").load("./../module/footer.html");
console.log("ready");
});
</script>
</head>
<body bgcolor="white">
<div id="wrapper">
<header id="header">
</header>
<section id="section">
</section>
<footer id="footer">
</footer>
</div>
</body>
</html>