picgo/view/index.html

49 lines
2.0 KiB
HTML
Raw Normal View History

2024-07-14 20:31:27 +08:00
{{define "style"}}
<link href="/static/css/index.css" rel="stylesheet">
{{end}}
2024-07-12 20:32:33 +08:00
{{define "content"}}
2024-07-14 20:31:27 +08:00
<div class="card text-center">
<div class="card-header" style="background-color: #fcf8e3">
<h4>图片上传</h4>
</div>
<div class="card-body" style="border-style:dashed; border-color:#98bf21; display: block">
<input type="file" class="form-control-file" id="upload-input-file" style="display:none;">
<div id="upload-btn-click">
<div style="height: 100px"></div>
<div class="ant-upload-drag-container">
<p class="ant-upload-drag-icon"><img src="/static/img/add.svg"></p>
<p class="ant-upload-text" style="font-size: 14px; margin: 0;">拖拽文件到此区域或<span
style="color: rgb(26, 102, 255);">点此上传</span></p>
<p class="ant-upload-hint" style="font-size: 12px; margin: 4px 0 0;">
只支持上传图片文件最大支持2M上传后支持复制url</p>
</div>
2024-07-14 20:31:27 +08:00
<div style="height: 100px"></div>
</div>
</div>
<div class="card-footer text-muted" style="background-color: #fcf8e3">
<div id="preview"></div>
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="图片链接" aria-label="图片链接"
aria-describedby="button-addon2">
<div class="input-group-append">
<button class="btn btn-outline-primary" type="button" id="button-addon2">复制链接</button>
</div>
</div>
</div>
</div>
2024-07-14 20:31:27 +08:00
2024-07-12 20:32:33 +08:00
{{end}}
2024-07-14 20:31:27 +08:00
{{define "script"}}
{{/*
<script id="tpl-image" type="text/html">
<div class="card" style="width: 18rem;">
<img src="{{ url }}" class="card-img-top" alt="...">
<div class="card-body">
<button type="button" class="btn btn-primary">点击复制按钮</button>
</div>
</div>
</script> */}}
<script src="/static/js/index.js"></script>
{{end}}