Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions templates/main.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<html>
<head>

<title>PHP-Proxy</title>
<title>数学のススメ</title>

<meta name="generator" content="php-proxy.com">
<meta name="generator" content="hiroshimagakuin.ed.jp">
<meta name="version" content="<?=$version;?>">

<style type="text/css">
html body {
font-family: Arial,Helvetica,sans-serif;
font-size: 12px;
font-size: 20px;
}

#container {
Expand All @@ -20,24 +20,24 @@
}

#error {
color:red;
color:blue;
font-weight:bold;
}

#frm {
padding:10px 15px;
background-color:#FFC8C8;
padding:60px 55px;
background-color:#2f4f4f;

border:1px solid #818181;
border:1px solid #2f4f4f;

-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
}

#footer {
text-align:center;
font-size:10px;
font-size:100px;
margin-top:35px;
clear:both;
}
Expand All @@ -51,7 +51,7 @@
<div id="container">

<div style="text-align:center;">
<h1 style="color:blue;">PHP-Proxy</h1>
<h1 style="color:midnightblue;">あなたの誕生日当てます</h1>
</div>

<?php if(isset($error_msg)){ ?>
Expand All @@ -67,7 +67,7 @@
<!-- I wouldn't touch this part -->

<form action="index.php" method="post" style="margin-bottom:0;">
<input name="url" type="text" style="width:400px;" autocomplete="off" placeholder="http://" />
<input name="url" type="text" style="width:400px;" autocomplete="off" placeholder="好きな数字を入力してください" />
<input type="submit" value="Go" />
</form>

Expand All @@ -82,9 +82,9 @@
</div>

<div id="footer">
Powered by <a href="//www.php-proxy.com/" target="_blank">PHP-Proxy</a> <?php echo $version; ?>
</div>


</body>
</html>
</html>
19 changes: 5 additions & 14 deletions templates/url_form.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@
-webkit-user-select: none;
-o-user-select: none;

border-bottom:1px solid #151515;
border-bottom:1px solid #2f4f4f;

background:#FFC8C8;
background:#2f4f4f;

height:45px;
line-height:45px;
height:5px;
line-height:5px;
}

#top_form input[name=url] {
width: 550px;
height: 20px;
height: 2px;
padding: 5px;
font: 13px "Helvetica Neue",Helvetica,Arial,sans-serif;
border: 0px none;
Expand Down Expand Up @@ -59,16 +59,7 @@ function smart_select(ele){

<div id="top_form">

<div style="width:800px; margin:0 auto;">

<form method="post" action="index.php" target="_top" style="margin:0; padding:0;">
<input type="button" value="Home" onclick="window.location.href='index.php'">
<input type="text" name="url" value="<?php echo $url; ?>" autocomplete="off">
<input type="hidden" name="form" value="1">
<input type="submit" value="Go">
</form>

</div>

</div>

Expand Down