-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew-article.php
62 lines (51 loc) · 1.58 KB
/
new-article.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="theme-color" content="#2E7D32">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1"/>
<title>SloCode</title>
<!--jquery Import-->
<script src="../scripts/jquery/external/jquery/jquery-2.1.4.js"></script>
<script src="../scripts/jquery/jquery-ui.js"></script>
<link href="../scripts/jquery/jquery-ui.css" rel="stylesheet">
<link rel="import" href="https://www.polymer-project.org/0.5/components/paper-ripple/paper-ripple.html">
<!--main scripts import-->
<script src="../scripts/site.php"></script>
<!--main styles import-->
<link rel="stylesheet" href="../styles/error/error.css">
<link rel="stylesheet" href="../styles/new.css">
<link rel="stylesheet" href="../styles/error/error-small.css">
</head>
<body>
<!--header-->
<header>
</div>
<div class="toolbar">
<div class="title">SloCode nov članek</div>
<div id="sticky">
<br/>
</div>
</div>
</header>
<!--content-->
<div id="body">
<div class="content ">
<div class="card">
<form method="post" action="#">
<br><br>
<div class="label form">Naslov:</div>
<textarea type="text" name="Content" id="Content" /></textarea>
<div class="label form">Vsebina:</div>
<textarea type="text" name="Content" id="Content" /></textarea>
<input type="submit" name="action" value="OBJAVI" id="Raised">
</input>
</form>
</div>
<div id="sent" style="display:none">
abc
</div>
</div>
</div>
</body>
</html>