Last active
May 28, 2019 02:52
-
-
Save KimGenius/b8349076b30e1fd07863577d9744c7be to your computer and use it in GitHub Desktop.
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> | |
<title>문자 발송</title> | |
</head> | |
<body> | |
<form action="/send" method="post"> | |
<input type="text" placeholder="발신번호" name="from"> | |
<input type="text" placeholder="수신번호" name="to"> | |
<input type="text" placeholder="내용" name="text"> | |
<input type="submit" value="발송하기"> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment