|
@@ -0,0 +1,107 @@
|
|
|
+<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
|
|
|
+<%@ page language="java" contentType="text/html; charset=UTF-8"
|
|
|
+ pageEncoding="UTF-8"%>
|
|
|
+<html>
|
|
|
+<head>
|
|
|
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
|
+<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0">
|
|
|
+<title>생활치료센터 다운로드(개발)</title>
|
|
|
+<style type="text/css">
|
|
|
+.container {
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.mainheader {
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ width: 100%;
|
|
|
+ background-color: #fff;
|
|
|
+}
|
|
|
+.mainheader * {
|
|
|
+ position: relative;
|
|
|
+ background-position: center;
|
|
|
+ -webkit-box-sizing: border-box;
|
|
|
+ -moz-box-sizing: border-box;
|
|
|
+ box-sizing: border-box;
|
|
|
+ background-size: contain;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ display: inline-block;
|
|
|
+ float: left;
|
|
|
+ margin: 1em 0;
|
|
|
+}
|
|
|
+.hospitallogo {
|
|
|
+ margin-left: 10%;
|
|
|
+ width: 50%;
|
|
|
+ height: 40px;
|
|
|
+}
|
|
|
+.toplogo {
|
|
|
+ position: relative;
|
|
|
+ width: 30%;
|
|
|
+ height: 40px;
|
|
|
+ margin-left: 10px;
|
|
|
+}
|
|
|
+.download {
|
|
|
+ clear: both;
|
|
|
+ width: 100%;
|
|
|
+ margin-left: auto;
|
|
|
+ margin-right: auto;
|
|
|
+ display: block;
|
|
|
+ margin-top: 15px;
|
|
|
+}
|
|
|
+.downloadbtn {
|
|
|
+ margin: 10px;
|
|
|
+ background-color: whitesmoke;
|
|
|
+ padding: 10px;
|
|
|
+ border-radius: 1.0em;
|
|
|
+}
|
|
|
+.logoimg {
|
|
|
+ width: 40px;
|
|
|
+ height: 40px;
|
|
|
+ padding-top: 20px;
|
|
|
+}
|
|
|
+.hidden {
|
|
|
+ position: absolute;
|
|
|
+ left: -10000;
|
|
|
+ width: 0px;
|
|
|
+}
|
|
|
+.ui-btn{
|
|
|
+ border-color: #fff;
|
|
|
+}
|
|
|
+.version{
|
|
|
+ clear: both;
|
|
|
+ text-align: right;
|
|
|
+ border-bottom: solid 2px #bbb;
|
|
|
+}
|
|
|
+</style>
|
|
|
+</head>
|
|
|
+<body>
|
|
|
+ <div class="container">
|
|
|
+ <!--헤더-->
|
|
|
+ <div class="mainheader">
|
|
|
+ <div class="hospitallogo">
|
|
|
+ <p class="hidden"></p>
|
|
|
+ </div>
|
|
|
+ <div class="toplogo">
|
|
|
+ <p class="hidden"></p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <p class="version">생활치료센터 서비스 입니다.</p>
|
|
|
+
|
|
|
+ <!--파일-->
|
|
|
+ <div class="download ui-grid-a" align="center">
|
|
|
+ <a href="/resources/download/dev/android/ctc-app-product-release.apk" class="ui-btn-b ui-block-a ui-corner-all">
|
|
|
+ <div class="downloadbtn">
|
|
|
+ <img src="/resources/images/android.png" class="logoimg">
|
|
|
+ <p>생활치료센터<br />ANDROID 설치</p>
|
|
|
+ </div>
|
|
|
+ </a>
|
|
|
+ <a href="itms-services://?action=download-manifest&url=https://life-center.lemonhc.com/resources/download/dev/ios/inhouse/manifest.plist" class="ui-btn-b ui-block-b ui-corner-all ">
|
|
|
+ <div class="downloadbtn">
|
|
|
+ <img src="/resources/images/apple.png" class="logoimg">
|
|
|
+ <p>생활치료센터<br>iOS(Apple) 설치</p>
|
|
|
+ </div>
|
|
|
+ </a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <footer class="sayhello"></footer>
|
|
|
+</body>
|
|
|
+</html>
|