-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
70 lines (63 loc) · 2.42 KB
/
index.php
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
<?php
require '.config/config.php';
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>AhmadHas SMS</title>
<link href='http://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700,700italic,900italic,900' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class="container">
<div class="title">
<h1>Ahmad<i>Has</i> SMS</h1>
</div>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<div>
<form method="post" action="send.php">
<div class="form-group">
<label for="message">From</label>
<select class="form-control" name="from">
<?php include 'get_list.php';?>
</select>
</div>
<div class="form-group">
<label for="dest">To</label>
<input type="text" class="form-control" id="dest" placeholder="Type a Phone Number(s), saparated by a comma" name="dest">
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea class="form-control" rows="3" id="message" placeholder="Type a Message" name="message"></textarea>
</div>
<button type="submit" class="btn btn-primary" name="submit" value="Send Message!">Submit</button>
</form>
<!-- <form method="post" action="send.php">
Message: <input type="text" name="message"><br><br>
From:
<select name="from">
<?php // include 'get_list.php'; ?>
</select><br><br>
To: <input type="text" name="dest"><br><br>
<input type="submit" name="submit" value="Send Message!" />
</form> -->
</div>
</div>
</div>
</div>
<!-- Scripts -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</body>
</html>