Skip to content

Commit

Permalink
Added Photos
Browse files Browse the repository at this point in the history
  • Loading branch information
Corruption13 committed Nov 21, 2021
1 parent 7c0b6f3 commit c4fbb12
Show file tree
Hide file tree
Showing 27 changed files with 53 additions and 8 deletions.
11 changes: 11 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]

[dev-packages]

[requires]
python_version = "3.9"
Binary file added medico/Project Images/Screenshot_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added medico/Project Images/main.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified medico/db.sqlite3
Binary file not shown.
Binary file added medico/medico/__pycache__/__init__.cpython-39.pyc
Binary file not shown.
Binary file added medico/medico/__pycache__/settings.cpython-39.pyc
Binary file not shown.
Binary file added medico/medico/__pycache__/urls.cpython-39.pyc
Binary file not shown.
Binary file added medico/medico/__pycache__/views.cpython-39.pyc
Binary file not shown.
Binary file added medico/reminder/__pycache__/__init__.cpython-39.pyc
Binary file not shown.
Binary file added medico/reminder/__pycache__/admin.cpython-39.pyc
Binary file not shown.
Binary file added medico/reminder/__pycache__/apps.cpython-39.pyc
Binary file not shown.
Binary file added medico/reminder/__pycache__/forms.cpython-39.pyc
Binary file not shown.
Binary file added medico/reminder/__pycache__/models.cpython-39.pyc
Binary file not shown.
Binary file added medico/reminder/__pycache__/tasks.cpython-39.pyc
Binary file not shown.
Binary file added medico/reminder/__pycache__/views.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified medico/requirements.txt
Binary file not shown.
50 changes: 42 additions & 8 deletions medico/templates/user.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,26 +21,59 @@
position: relative;
margin: auto;
box-shadow: 2px 10px 40px rgba(22, 20, 19, 0.4);
border-radius: 10px;
border-radius: 5em;
margin-top: 50px;
}

.title{
font-size: 60px;
color:#212529;
font-family: 'Roboto', sans-serif;
}
.col-sm-5 {
font-size: 20px;
height: 100% !important;
padding: 4%;
word-wrap: break-word;
}
.col-sm-6 {
background-color: #e03131;

background-color: #e09e9e;
border-radius: 5em 0em 0em 5em;
}
h1 {
padding: 20%;
}
.text{
text-decoration: none !important;
font-size: 25px;
font-size: 20px;

}

@media only screen and (max-width: 768px) {

body{
font-size: 0.7em;

}

.col-sm-5 {

padding: 8%;
word-wrap: break-word;
padding-bottom: 70px;
}

.title{
font-size: 42px;
color:#212529;
font-family: 'Roboto', sans-serif;
}
.col-sm-6 {
background-color: #ddc2f7;
border-radius: 5em 5em 0em 0em;
}
}

</style>

</head>
Expand All @@ -51,22 +84,23 @@
<div class="col-sm-6">
<div class="sign-in" id="sign-in">
<br>
<h1 style="font-size: 60px;color:#212529;font-family: 'Roboto', sans-serif;">Medico </h1>
<p style="font-size: 20px;">The reminder app that calls you to take your medication!
<h1 class="title">Medico </h1>
<p style="font-size: 20px; padding-left: 42px;">The reminder app that calls you to take your medication!
</p>
<br><br><br>
</div>
</div>
<div class="col-sm-5">
<br>
{% if user.is_authenticated %}
<a href="logout" class="text" > {{ user.first_name }} Logout! </a><br><br><br>
Logged in as: {{ user.first_name }} <br><br>
<a href="logout" class="text" > Logout! </a><br><br><br>
{% else %}
<a href="register" class="text"> Click here to register! </a><br><br><br>
<a href="login" class="text" > Click here to login! </a><br><br><br>

{% endif %}
<a href="reminder" class="text"> Click here to make reminder! </a>
<a href="reminder" class="text"> Click here to make reminder! </a>
</div>

</div>
Expand Down

0 comments on commit c4fbb12

Please sign in to comment.