Skip to content
Snippets Groups Projects
Commit da4926ea authored by Raghav's avatar Raghav
Browse files

Automate css file to include in login and signup page

parent c87f64b6
No related branches found
No related tags found
No related merge requests found
...@@ -16,10 +16,11 @@ ...@@ -16,10 +16,11 @@
<link href="/photogram-project-php/assets/dist/css/bootstrap.min.css" rel="stylesheet"> <link href="/photogram-project-php/assets/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Style for login forms --> <!-- CSS for login and signup page -->
<link href="/photogram-project-php/assets/dist/css/login.css" rel="stylesheet">
<!-- Checks if the file is exists -->
<!-- Style for signup forms --> <?if(file_exists($_SERVER['DOCUMENT_ROOT'].'/photogram-project-php/assets/dist/css/'.basename($_SERVER['PHP_SELF'],".php") . '.css')){?>
<link href="/photogram-project-php/assets/dist/css/signup.css" rel="stylesheet"> <link href="/photogram-project-php/assets/dist/css/<?=basename($_SERVER['PHP_SELF'], ".php")?>.css" rel="stylesheet">
<?}?>
</head> </head>
\ No newline at end of file
...@@ -17,8 +17,8 @@ ...@@ -17,8 +17,8 @@
<label for="floatingPassword">Password</label> <label for="floatingPassword">Password</label>
</div> </div>
<div class="form-floating"> <div class="form-floating">
<input name="phone" type="text" class="form-control" id="floatingInputphone" placeholder="Phone number"> <input name="phone" type="text" class="form-control" id="floatingInput" placeholder="Phone number">
<label for="floatingInputphone">Phone number</label> <label for="floatingInput">Phone number</label>
</div> </div>
......
...@@ -32,7 +32,7 @@ body { ...@@ -32,7 +32,7 @@ body {
border-bottom-right-radius: 0; border-bottom-right-radius: 0;
border-bottom-left-radius: 0; border-bottom-left-radius: 0;
} }
.form-signup input[id="floatingInputphone"] { .form-signup input[name="phone"] {
margin-bottom: 10px; margin-bottom: 10px;
border-top-left-radius: 0; border-top-left-radius: 0;
border-top-right-radius: 0; border-top-right-radius: 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment