Skip to content

Commit d25aa27

Browse files
committed
minor UI styling
1 parent ed1b025 commit d25aa27

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,4 +133,4 @@ def internal_error(error):
133133
return render_template('error.html', title='Internal Server Error', message='There appears to be an internal server error going on right now. Please contact <a href=\'mailto:tech@freetailhackers.com\'>tech@freetailhackers.com</a> to allow us to investigate further.'), 500
134134

135135
if __name__ == '__main__':
136-
app.run(debug=True)
136+
app.run()

static/scss/git-challenge.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ footer {
102102

103103
position: absolute;
104104
bottom: 0;
105-
width: 100%;
106105
/* Set the fixed height of the footer here */
107106
height: 60px;
108107

templates/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ <h1>30 Day Git Challenge</h1>
77
<p>Check your GitHub streak here!</p>
88
<form action="{{ url_for('get-results')}}" method="POST" id="check">
99
<div class="form-group">
10-
<input type="text" name="username" placeholder="GitHub Username" required autocomplete="off">
10+
<input type="text" name="username" placeholder="GitHub Username" required autocomplete="off" autocapitalize="off" spellcheck="false">
1111
</div>
1212
<div class="form-group">
1313
<button type="submit" id="submit-button">Check</button>
@@ -16,7 +16,7 @@ <h1>30 Day Git Challenge</h1>
1616
</div>
1717
</div>
1818
<footer class="footer">
19-
<div class="container">
19+
<div class="col-md-6 col-md-offset-3">
2020
<a href="http://freetailhackers.com"><img class="img-responsive" class="center" src="{{url_for('static', filename='img/logo.svg')}}" width=50></a>
2121
</div>
2222
</footer>

0 commit comments

Comments
 (0)