-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
28 lines (28 loc) · 850 Bytes
/
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
<html>
<head>
<title> Snapcatz </title>
<style type="text/css">
body{
font-family: 'Tahoma'
}
</style>
</head>
<body>
<?php exec("python cat.py" . " > /dev/null &") ?>
<div style="margin:20px auto; text-align:center; width:400px; height: 260px; border:2px solid; border-radius:20px; background-color: lightgray">
<h1> Snapcatz!</h1>
<p><form name="input" action="http://localhost:8080/login" method="post">
Your Username:
<input type="text" name="username" style="border: 2px solid rgb(139, 188, 190); border-radius:5px"></p>
<p>
Password:
<input type="password" name="password" style="border: 2px solid rgb(139, 188, 190); border-radius:5px"></p>
<p>
Recipient Username:
<input type="text" name="friend" style="border: 2px solid rgb(139, 188, 190); border-radius:5px"></p>
<p>
<input type="submit" value="Submit"></p>
</body>
</form>
</div>
<html>