View sourcecode

The following files exists in this folder. Click to view.

newblog.php

32 lines ASCII Unix (LF)
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
<?php
include("check_session.php");
?>

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>New blog</title>
    <link rel="stylesheet" href="/spectre/spectre-master/dist/spectre.css">
</head>
<body style="text-align: center;">
    <h1>New blog</h1>

    <form method="post" action="h_blog_insert.php">
        <p>
            <label for="name">Blog Name:</label>
        </p>
        <p>
            <input type="text" id="name" name="name" required>
        </p>
        <p>
            <label for="desc">Description (optional):</label>
        </p>
        <p>
            <input type="text" id="desc" name="desc">
        </p>
        <input type="submit" class="btn btn-primary" value="Create New Blog">
    </form>
</body>
</html>