| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- @section('title', '上传应用')
- @section('header')
- @endsection
- <style>
- .flex_row{
- display: flex;
- flex-direction: row;
- }
- .flex_center {
- justify-content: center;
- align-items: center;
- }
- .item-center {
- align-items: center;
- }
- /* 左右对齐,项目之间的间隔都相等 */
- .allAlignment {
- justify-content: space-between;
- }
- /* 每个项目两侧的间隔相等。所以,项目之间的间隔比项目与边框的间隔大一倍 */
- .average {
- justify-content: space-around;
- }
- /* 选择文件按钮 */
- .btn_file {
- position: relative;
- display: inline-block;
- background: #D0EEFF;
- border: 1px solid #99D3F5;
- border-radius: 4px;
- padding: 4px 12px;
- overflow: hidden;
- color: #1E88C7;
- text-decoration: none;
- text-indent: 0;
- line-height: 15px;
- }
- .btn_file input {
- position: absolute;
- font-size: 100px;
- right: 0;
- top: 0;
- opacity: 0;
- }
- .btn_file:hover {
- background: #AADFFD;
- border-color: #78C3F3;
- color: #004974;
- text-decoration: none;
- }
- </style>
- <div class="wrap-container welcome-container">
- <div class="row">
- <div class="welcome-left-container col-lg-9">
- <!--基本信息-->
- <div class="server-panel panel panel-default">
- <div class="panel-header">基础信息</div>
- <hr>
- <div class="panel-body clearfix">
- <!-- <div class='flex_row' > -->
- <form class='flex_row' method="post" action="/apps/file" enctype="multipart/form-data" >
-
- <input type="hidden" name="_token" value="<?php echo csrf_token(); ?>">
- <a href="btn_file">
- <img src="/static/admin/images/upload.jpg" style="margin-left: 46%;margin-top:15px;width: 50px;height: 50px;">
- <input type="file" name="picture">
- </a>
- <button type="submit"> 提交 </button>
-
- </form>
-
- <!-- </div> -->
- </form>
- </div>
- </div>
- </div>
- </div>
- @section('js')
- @endsection
- @extends('common.list')
|