Skip to content

Commit

Permalink
Adding source file
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown authored and unknown committed May 4, 2012
1 parent f24805c commit 3d93a89
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions main.py
@@ -0,0 +1,34 @@
#!/usr/bin/env python
#
# Copyright 2007 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

form = """
<form method="POST">
<label><h1>Enter some text to ROT13: </h1></label><br>
<textarea name="text" rows="5" col="80"></textarea>
<br><br>
<input type="submit">
</form>
"""
import webapp2

class MainHandler(webapp2.RequestHandler):
def get(self):
self.response.out.write(form)
def post(self):
self.response.out.write("Data is valid")
app = webapp2.WSGIApplication([('/', MainHandler)],
debug=True)

0 comments on commit 3d93a89

Please sign in to comment.