Skip to content

Instantly share code, notes, and snippets.

@Crowned-Eagle
Last active September 9, 2020 07:10
Show Gist options
  • Save Crowned-Eagle/9ab4076465499efd915d115f8666189d to your computer and use it in GitHub Desktop.
Save Crowned-Eagle/9ab4076465499efd915d115f8666189d to your computer and use it in GitHub Desktop.
WA_Send
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License
as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
License for more details.
You should have received a copy of the GNU General Public License along with this program.
If not, see <https://www.gnu.org/licenses/>.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=360, initial-scale=1.0">
<title>Send WA Message</title>
<style>
form {
width: 420px;
}
div {
margin-bottom: 20px;
}
label {
display: inline-block;
width: 240px;
text-align: left;
padding-right: 1px;
}
button, input {
float: right;
}
</style>
</head>
<body>
<form action="https://api.whatsapp.com/send? method="get">
<div>
<label for="phone">Mobile Number</label>
<input name="phone" id="phone" value="91xxxx-xxxx-xx">
</div>
<div>
<label for="text">Message</label>
<textarea name="text" cols="68" rows="10"></textarea>
<!--input name="text2" value="Hi.."-->
</div>
<div>
<button>Save/Send</button>
</div>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment