diff --git a/.gitignore b/.gitignore index 7bfcd7a0..0d058fa0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ __pycache__/ +snigdhoprogramming/ *.pyc \ No newline at end of file diff --git a/db.sqlite3 b/db.sqlite3 index 8ac810ba..12e1bb91 100644 Binary files a/db.sqlite3 and b/db.sqlite3 differ diff --git a/templates/about.html b/templates/about.html index fe320a7d..1f66c278 100644 --- a/templates/about.html +++ b/templates/about.html @@ -1,68 +1,20 @@ - - - - - - +{% extends 'base.html' %} +{% block title %}About {% endblock title %} +{% block body %} +
+

TextUtils A tool for analyzing text data in Django backend.

+

It is a simple django project or website in which we can Analyze text.

+
+
+

What Can We do from Textutils?

+
1) Remove Punctuations
2) UPPERCASE +
3) New Line Remove
4) Extra Spaces Remover
5) Numbers Remover +
+
- - +

Requirments

+ python3
django +
- Text Utils-Results - - - - - - -
-

THIS PAGE IS STILL IN DEVELOPEMENT STAGE

- - - - - - - - - - - +
+{% endblock body %} \ No newline at end of file diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 00000000..229acf82 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,60 @@ + + + + + + + {% block title %}{% endblock title %}| Text Utils + + + + + + + {% block body %} {% endblock body %} + + + + + + + + \ No newline at end of file diff --git a/templates/contact-us.html b/templates/contact-us.html new file mode 100644 index 00000000..9f59acb1 --- /dev/null +++ b/templates/contact-us.html @@ -0,0 +1,23 @@ +{% extends 'base.html' %} + +{% block title %}Contact Us {% endblock title %} + +{% block body %} +
+
+
+ + +
+
+ + +
+
+ + +
+ +
+
+{% endblock body %} \ No newline at end of file diff --git a/templates/index.html b/templates/index.html index 10f597d1..26c7fa1e 100644 --- a/templates/index.html +++ b/templates/index.html @@ -28,7 +28,7 @@