-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (28 loc) · 887 Bytes
/
Copy pathindex.html
File metadata and controls
29 lines (28 loc) · 887 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>PHP SMS</title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css" />
</head>
<body>
<h1>PHP SMS</h1>
<form method="post" action="send.php">
<label for="number">Number</label>
<input type="text" name="number" id="number" />
<label for="message">Message</label>
<textarea name="message" id="message"></textarea>
<fieldset>
<legend>Provider</legend>
<label>
<input type="radio" name="provider" value="infobip" checked /> Infobip
</label>
<br />
<label>
<input type="radio" name="provider" value="twilio" /> Twilio
</label>
</fieldset>
<button>Send</button>
</form>
</body>
</html>