Created
March 29, 2014 17:14
-
-
Save Rokt33r/9858275 to your computer and use it in GitHub Desktop.
Laravel 基礎 Lesson 4 - DB (app/views/posts/create.php)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title></title> | |
</head> | |
<body> | |
<form method="post" action="../posts"> | |
<label for="title">title</label><br> | |
<input type="text" name="title"><br> | |
<label for="body">body</label><br> | |
<textarea name="body"></textarea><br> | |
<button type="submit">submit</button> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment