Skip to content
Snippets Groups Projects
Commit 7d44e03c authored by Husnulzaki Wibisono Haryadi's avatar Husnulzaki Wibisono Haryadi
Browse files

Modify sign up page

parent 51bb771b
1 merge request!45OneHundred - 13515005 - Husnulzaki Wibisono Haryadi
body {
background-color: rgb(210,210,210);
color: rgb(250,250,250);
}
.frame { .frame {
border: 6px solid rgb(65,62,119);
border-radius: 10px;
background-color: rgb(92,88,138);
margin: 50px auto; margin: 50px auto;
} }
......
#login_frame { .frame {
height: 550px; height: 550px;
width: 400px; width: 400px;
border: 10px solid #02702c;
border-radius: 70px;
background-color: #8bbd3c;
} }
#login_frame > div { .frame > div {
left: 10%; left: 10%;
width: 80%; width: 80%;
height: auto; height: auto;
position: relative; position: relative;
} }
#login_frame input[type="submit"] { .frame input[type="submit"] {
border-radius: 40px; border-radius: 40px;
background-color: rgb(191,216,255); background-color: rgb(191,216,255);
padding: 5px 3px; padding: 5px 3px;
...@@ -22,16 +25,17 @@ ...@@ -22,16 +25,17 @@
color: rgb(92,88,138); color: rgb(92,88,138);
} }
#login_frame input[type="submit"]:hover { .frame input[type="submit"]:hover {
opacity: 0.6; opacity: 0.6;
} }
#sign_up_frame { .frame {
height: 550px; height: 550px;
width: 400px; width: 400px;
border-radius: 25px;
} }
#sign_up_frame input[type="submit"] { .frame input[type="submit"] {
border-radius: 40px; border-radius: 40px;
background-color: rgb(191,216,255); background-color: rgb(191,216,255);
padding: 5px 3px; padding: 5px 3px;
...@@ -42,11 +46,11 @@ ...@@ -42,11 +46,11 @@
margin: 0 auto 15px; margin: 0 auto 15px;
} }
#sign_up_frame input[type="submit"]:hover { .frame input[type="submit"]:hover {
opacity : 0.6; opacity : 0.6;
} }
#sign_up_frame > div { .frame > div {
left: 10%; left: 10%;
width: 80%; width: 80%;
height: auto; height: auto;
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<link rel="stylesheet" type="text/css" href="../css/login.css"> <link rel="stylesheet" type="text/css" href="../css/login.css">
</head> </head>
<body> <body>
<div id="sign_up_frame" class="frame"> <div class="frame">
<h1>-- Sign up --</h1> <h1>-- Sign up --</h1>
<div> <div>
......
...@@ -28,6 +28,30 @@ ...@@ -28,6 +28,30 @@
</div> </div>
</a> </a>
</div> </div>
<!-- Actual content -->
<div>
<h1>MAKE AN ORDER</h1>
<div style="background-color: white; max-width: 600px; margin-left: auto; margin-right: auto">
<a href="order/select_location.html">
<div style="width:150px; float: left; margin-left: 5%; border: 5px solid black">
Select Destination
</div>
</a>
<a href="order/select_driver.html">
<div style="width:150px; float: left; margin-left: 5px; margin-right: 5px; border: 5px solid black">
Select Driver
</div>
</a>
<a href="order/complete_order.html">
<div style="width:150px; float: left; margin-right: 5%; border: 5px solid black">
Complete Order
</div>
</a>
</div>
</div>
</div> </div>
</body> </body>
</html> </html>
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment