forked from Grafikart/BlogMVC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin_edit.html
More file actions
97 lines (86 loc) · 5.55 KB
/
admin_edit.html
File metadata and controls
97 lines (86 loc) · 5.55 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Blog | Admin panel</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<style>
body {
padding-top: 50px;
}
.sidebar{
margin-top: 50px;
}
</style>
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Blog</a>
</div>
<div class="collapse navbar-collapse navbar-ex1-collapse navbar-right">
<ul class="nav navbar-nav">
<li><a href="index.html">< Back to front</a></li>
</ul>
</div>
</div><!-- /.container -->
</div>
<div class="container">
<h1>Edit post</h1>
<p><a href="admin_index.html">< Back to posts</a></p>
<form action="#" id="PostAdminEditForm" method="post" accept-charset="utf-8">
<div class="row">
<div class="col-md-6">
<div class="form-group required">
<label for="PostName">Name :</label>
<input name="data[Post][name]" class="form-control" maxlength="255" type="text" value="Space Pilot 3000" id="PostName" required="required">
</div>
</div>
<div class="col-md-6">
<div class="form-group required">
<label for="PostSlug">Slug :</label>
<input name="data[Post][slug]" class="form-control" maxlength="255" type="text" value="space-pilot-3000" id="PostSlug" required="required">
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label for="PostCategoryId">Category :</label>
<select name="data[Post][category_id]" class="form-control" id="PostCategoryId">
<option value="1">category #1</option>
<option value="2">Category #2</option>
<option value="3">Category #3</option>
</select>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label for="PostUserId">Author :</label>
<select name="data[Post][user_id]" class="form-control" id="PostUserId">
<option value="1">Author #1</option>
</select>
</div>
</div>
</div>
<div class="form-group required">
<label for="PostContent">Content :</label>
<textarea name="data[Post][content]" class="form-control" cols="30" rows="6" id="PostContent" required="required">I don't want to be rescued. So I really am important? How I feel when I'm drunk is correct? Leela's gonna kill me. It's a T. It goes "tuh". File not found. She also liked to shut up! ## The Why of Fry I love this planet! I've got wealth, fame, and access to the depths of sleaze that those things bring. You won't have time for sleeping, soldier, not with all the bed making you'll be doing. Alright, let's mafia things up a bit. Joey, burn down the ship. Clamps, burn down the crew. * So I really am important? How I feel when I'm drunk is correct? * No! The cat shelter's on to me. * No, she'll probably make me do it. ### My Three Suns OK, this has gotta stop. I'm going to remind Fry of his humanity the way only a woman can. Why yes! Thanks for noticing. Now, now. Perfectly symmetrical violence never solved anything. #### A Clockwork Origin You can see how I lived before I met you. Can we have Bender Burgers again? I guess because my parents keep telling me to be more ladylike. As though! Hey! I'm a porno-dealing monster, what do I care what you think? You know, I was God once. 1. You lived before you met me?! 2. They're like sex, except I'm having them! 3. You, a bobsleder!? That I'd like to see! ##### Leela's Homeworld Yep, I remember. They came in last at the Olympics, then retired to promote alcoholic beverages! Large bet on myself in round one. Actually, that's still true. Ask her how her day was. In your time, yes, but nowadays shut up! Besides, these are adult stemcells, harvested from perfectly healthy adults whom I killed for their stemcells. Why not indeed!</textarea>
</div>
<div class="submit">
<input class="btn btn-primary" type="submit" value="Edit">
</div>
</form>
</div> <!-- /container -->
</body>
</html>