-
Notifications
You must be signed in to change notification settings - Fork 0
/
create.php
82 lines (58 loc) · 1.72 KB
/
create.php
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
session_start();
if($_SESSION['id'] === null){
header("HTTP/1.1 401 Unauthorized");
die();
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php
include('./import/basic.php');
include('./import/adblock.php');
include('./import/content.php');
?>
</head>
<body class="bg-dark" data-bs-theme="dark">
<?php
$page_func = "新增文章?";
include('./import/nav.php')
?>
<div class="container" id="body">
<div class="container rounded shadow bg-dark content">
<div id="content">
<div class="d-flex align-items-center">
<div class=".padding-left0 p-2 me-auto ">
<div >
<h2 contenteditable="true" id="title1">所以這是什麼,可以吃嗎? </h2>
</div>
</div>
<div class="p-2 vote">
<div class="btn btn-primary" id="create">送出</div>
</div>
</div>
</div>
<div id="editor">
<p>你可以嘗試反白這段文字,這是一個所見及所得的編輯器,使用quill</p>
<p>Some initial <strong>bold</strong> text</p>
<p><br></p>
</div>
</div>
<br>
<div class="adbox">
<a href="google.com" class="preview-link">
<div class="container rounded shadow bg-danger preview-box">
<h3 class="title-preview">廣告</h3>
<p class="content-preview">
這邊會插入廣告OUO,想用google adsence,再給我時間研究。
</p>
</div>
</a>
</div>
<script src="./js/editor.js"></script>
</body>
<script>
quill.enable();
</script>
</html>