This repository was archived by the owner on Oct 21, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (42 loc) · 1.64 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>EaaS SDK Demo</title>
<script src="https://demo.uzer.me/js/jquery-3.2.1.min.js"></script>
<script src="https://demo.uzer.me/js/base64.min.js"></script>
<link rel="stylesheet" type="text/css" href="./css/sample.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<script src="./js/sample.js"></script>
</head>
<body>
<div class="container-fluid d-flex flex-column justify-content-center align-items-center">
<div class="form-title">
EaaS SDK 使用示例
</div>
<div class="card form-card">
<div class="card-body">
<div class="form-group" >
<label for="">File ID</label>
<input type="text" id="fileid" value="123" class="form-control">
</div>
<div class="form-group" >
<label for="">File NAME</label>
<input type="text" id="fileName" value="ddd.doc" class="form-control">
</div>
<div class="form-check">
<label class="form-check-label">
<input type="checkbox" id="filereadonly" class="form-check-input">
Readonly File
</label>
</div>
<div class="form-group">
<button id="btn-start" class="btn btn-primary btn-block">启动线上Word</button>
</div>
</div>
</div>
</div>
</body>
</html>