This repository has been archived by the owner on Apr 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
67 lines (64 loc) · 2.89 KB
/
options.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>配置</title>
<link href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<script src="./js/jquery.min.js"></script>
<script src="./js/options.js"></script>
<style type="text/css">
body{background: #eeeeef;}
/*show-tips*/
#showTips{position:fixed; top:0; z-index:99999999;left:0;width:600px; overflow:hidden;}
#showTips .alert{margin:0;display:none;word-break:break-all; width:600px;}
</style>
</head>
<body>
<div class="container" style="margin-top: 30px;background: #fff;padding: 0;">
<!-- Nav tabs -->
<ul class="nav nav-tabs" role="tablist">
<li role="presentation" class="active">
<a href="#cos" aria-controls="cos" role="tab" data-toggle="tab">腾讯云存储</a>
</li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<div role="tabpanel" class="tab-pane active" id="home">
<form class="form-horizontal" id="option" style="padding: 10px;" autocomplete="off">
<div class="form-group">
<label for="SecretId" class="col-sm-1 control-label">SecretId</label>
<div class="col-sm-5">
<input type="text" class="form-control" id="SecretId" name="SecretId" placeholder="SecretId">
</div>
</div>
<div class="form-group">
<label for="SecretKey" class="col-sm-1 control-label">SecretKey</label>
<div class="col-sm-5">
<input type="text" class="form-control" id="SecretKey" name="SecretKey" placeholder="SecretKey">
</div>
</div>
<div class="form-group">
<label for="Bucket" class="col-sm-1 control-label">Bucket</label>
<div class="col-sm-5">
<input type="text" class="form-control" id="Bucket" name="Bucket" placeholder="Bucket">
<p class="help-block">格式:test-123932428</p>
</div>
</div>
<div class="form-group">
<label for="Region" class="col-sm-1 control-label">Region</label>
<div class="col-sm-5">
<input type="text" class="form-control" id="Region" name="Region" placeholder="Region">
<p class="help-block">格式:ap-shanghai</p>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-1 col-sm-10">
<button type="submit" class="btn btn-primary">保存</button>
</div>
</div>
</form>
</div>
</div>
</div>
</body>
</html>