forked from Asabeneh/30-Days-Of-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
293 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
{% extends 'layout.html' %} | ||
{% block content %} | ||
<h1>About Us</h1> | ||
<h2>{{name}}</h2> | ||
<p>This is a 30 days of python programming challenge. If you have been coding this far, you are awesome. Congratulations | ||
for the job well done!</p> | ||
<div class="container"> | ||
<h1>About {{name}}</h1> | ||
<p>This is a 30 days of python programming challenge. If you have been coding this far, you are awesome. | ||
Congratulations | ||
for the job well done!</p> | ||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
{% extends 'layout.html' %} | ||
{% block content %} | ||
<h1>Welcome to {{name}}</h1> | ||
<p>You need the following technologies to build this web application:</p> | ||
<ul> | ||
{% for tech in techs %} | ||
<li>{{tech}}</li> | ||
<div class="container"> | ||
<h1>Welcome to {{name}}</h1> | ||
<p>This application clean texts and analyse the number of word, characters and most frequent words in the text. | ||
Check it out by click text analyzer at the menu. | ||
You need the following technologies to build this web application:</p> | ||
<ul class="tech-lists"> | ||
{% for tech in techs %} | ||
<li class="tech">{{tech}}</li> | ||
|
||
{% endfor %} | ||
</ul> | ||
</div> | ||
|
||
|
||
{% endfor %} | ||
</ul> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,17 @@ | ||
{% extends 'layout.html' %} | ||
{% block content %} | ||
<h1>Text Analyzer</h1> | ||
<form action="result.html" method="POST"></form> | ||
<textarea cols="120" rows='30' name="content"></textarea> | ||
<br /> | ||
<input type='submit' class="btn" value="Process Text"/> | ||
</form> | ||
<div class="container"> | ||
<h1>Text Analyzer</h1> | ||
<form action="http://localhost:5000/post" method="POST"> | ||
<div> | ||
<textarea rows='25' name="content" autofocus></textarea> | ||
</div> | ||
<div> | ||
<input type='submit' class="btn" value="Process Text" /> | ||
</div> | ||
|
||
|
||
</form> | ||
</div> | ||
|
||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
{% extends 'layout.html' %} | ||
{% block content %} | ||
<h1>Result </h1> | ||
<div class="container"> | ||
<h1>Text Analysis Result </h1> | ||
</div> | ||
|
||
|
||
{% endblock %} |
Oops, something went wrong.