<?xml version="1.0"?>
<News hasArchived="true" page="9009" pageCount="10793" pageSize="10" timestamp="Sun, 06 Sep 2026 06:05:01 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=9009&amp;range=30">
<NewsItem contentIssues="true" id="26599" important="false" status="posted" url="https://my3.my.umbc.edu/posts/26599">
<Title>Intro to Flask: Adding a Contact Page</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <a href="http://rss.buysellads.com/click.php?z=1260013&amp;k=d754f1e9ba63a736ba8ff5ece958f7dd&amp;a=28982&amp;c=2052851820" rel="nofollow external" class="bo"><img src="http://rss.buysellads.com/img.php?z=1260013&amp;k=d754f1e9ba63a736ba8ff5ece958f7dd&amp;a=28982&amp;c=2052851820" alt="" style="max-width: 100%; height: auto;"></a><p>In the <a href="http://net.tutsplus.com/tutorials/python-tutorials/an-introduction-to-pythons-flask-framework" rel="nofollow external" class="bo">previous article</a> in this mini-series, we leveraged <a href="http://flask.pocoo.org/" rel="nofollow external" class="bo">Flask</a> to build a simple website that contains “Home” and “About” pages using a generalized workflow that we can apply to other Flask-based web apps. In this lesson, I’ll demonstrate how to add a “Contact” page that allow users to send you messages.</p>
    <p></p>
    <p>The code used in this article can be found on <a href="https://github.com/NETTUTS/intro-to-flask" rel="nofollow external" class="bo">GitHub</a>. Captions, such as <strong>Checkpoint: 05_contact_form</strong>, mean that you can switch to the branch named “05_contact_form” and review the code at that point in the article.</p>
    <hr>
    <h2>Flask Extensions</h2>
    <blockquote><p> You can find a full list of extensions in the <a href="http://flask.pocoo.org/extensions/" rel="nofollow external" class="bo">Flask Extension Registry</a>.</p></blockquote>
    <p>Flask doesn’t come with many features off the shelf, making it easy to pick up and learn. There is no object-relational mapper for database interaction or admin interfaces to add and update content. It only offers a small set of functions, two of which we’ve already used — <code>url_for()</code> and <code>render_template()</code>.</p>
    <p>Instead of shipping with extra functionality, Flask’s extension model allows you to add functionality as needed. A Flask extension is a package that adds specific functionality to your app. For example, <a href="http://packages.python.org/Flask-SQLAlchemy/" rel="nofollow external" class="bo">Flask-SQLAlchemy</a> adds database support to your app, whereas <a href="http://packages.python.org/Flask-Login/" rel="nofollow external" class="bo">Flask-Login</a> adds login/logout support. You can find a full list of extensions in the <a href="http://flask.pocoo.org/extensions/" rel="nofollow external" class="bo">Flask Extension Registry</a>.</p>
    <p>To create a Contact page, we’ll use <a href="http://packages.python.org/Flask-WTF/" rel="nofollow external" class="bo">Flask-WTF</a> to handle and validate form data and <a href="http://packages.python.org/Flask-Mail/" rel="nofollow external" class="bo">Flask-Mail</a> to email the form data to you.</p>
    <hr>
    <h2>Flask-WTF</h2>
    <p><a href="http://packages.python.org/Flask-WTF/" rel="nofollow external" class="bo">Flask-WTF</a> is an exension that handles and validates form data. What does that mean? Look at the following figure:</p>
    <div> <img src="http://cdn.tutsplus.com/net.tutsplus.com/authors/lalith-polepeddi/intro-to-flask-p2-fig1.png" style="max-width: 100%; height: auto;"><p><strong>Fig. 1</strong></p>
    </div>
    <ol>
    <li>A user issues a GET request for a web page that contains a form.</li>
    <li>The user fills in the form.</li>
    <li>The user clicks the “Send” button, submitting it to the server via a POST request.</li>
    <li>The server validates the information.</li>
    <li>If one or more fields do not validate, the web page containing the form loads again with a helpful error message, prompting the user to try again.</li>
    <li>If all fields validate, the form information is used in the next step in the pipeline.</li>
    </ol>
    <p>A contact page will have fields for the user’s name, email, subject, and message. In Flask, we’ll POST the form to a function inside <code>routes.py</code>. This function is called the form handler. We’ll run a few validation checks, and if any of the input does not pass muster, we’ll refresh the page to display a message that describes the error. Once all validation checks pass, we’ll use the form data for the next step: emailing the message to you, the website owner.</p>
    <blockquote><p>Flask extensions are simple, powerful tools that extend the functionality of your Flask-based app.</p></blockquote>
    <p>That’s how form handling and validation works. Now where do we actually define the form? We could write HTML using the <code>&lt;form&gt;</code> element and set its <code>action</code> attribute to a Python script. The Python script would mirror the form in order to capture each form field and validate the form field data. If we use this strategy, however, we’d essentially define the form twice — once for the front-end and once for the back-end.</p>
    <p>It would be great to define the form only once: in the Python script. This is exactly what Flask-WTF allows us to do. We’ll define the form just once in a Python script, and then we’ll let Flask-WTF generate the form’s HTML for us. The point of all of this is to separate presentation from content.</p>
    <p>Enough chatter. Let’s code.</p>
    <h3>Creating a Form</h3>
    <p>As a first step, let’s get back into the isolated development environment we created last time.</p>
    <pre>$ cd flaskapp&#x000A;    $ . bin/activate&#x000A;    </pre>
    <p>Now that we’ve entered and activated our development environment, we can safely install Flask-WTF:</p>
    <pre>$ pip install flask-wtf&#x000A;    </pre>
    <p>Let’s now define the form in a Python script. We already have <code>routes.py</code>, which maps URLs to functions. Let’s not clutter it with unrelated code. Instead, create a new file called <code>forms.py</code>, and place it inside the <code>app/</code> folder.</p>
    <p><strong>app/forms.py</strong></p>
    <pre>from flask.ext.wtf import Form, TextField, TextAreaField, SubmitField&#x000A;    &#x000A;    class ContactForm(Form):&#x000A;      name = TextField("Name")&#x000A;      email = TextField("Email")&#x000A;      subject = TextField("Subject")&#x000A;      message = TextAreaField("Message")&#x000A;      submit = SubmitField("Send")&#x000A;    </pre>
    <p>We just created a form. What did we do? First, we imported a few useful classes from Flask-WTF — the base <code>Form</code> class, a text field, a textarea field for multi-line text input, and a submit button. Next, we created a new class named <code>ContactForm</code>, inheriting from the base <code>Form</code> class. Then we created each field that we want to see in the contact form. Instead of writing <code>&lt;input type="text"&gt;Name&lt;/input&gt;</code> in an HTML file, you write <code>name = TextField("Name")</code>.</p>
    <h3>Using the Form</h3>
    <p>Now let’s use our form. We want it to appear when a user visits the contact page. In Flask terms, we want the form to show up in a web template and map a URL to that web template so we can visit it in the browser. This means we need to create a new web template and a new URL mapping. Let’s start by creating a new URL mapping.</p>
    <blockquote><p>This is an action-packed section, and it may be a little confusing. But stick with me and we’ll get through it.</p></blockquote>
    <p>As a first step, open <code>routes.py</code> and import our newly created form by adding <code>from forms import ContactForm</code> at the beginning of the script.</p>
    <p><strong>app/routes.py</strong></p>
    <pre>from flask import Flask, render_template&#x000A;    from forms import ContactForm&#x000A;    </pre>
    <blockquote><p>You can prevent a CSRF attack by making sure that the form submission originates from your web app.</p></blockquote>
    <p>Next, configure Flask-WTF to handle a security exploit known as cross-site request forgery (CSRF). In a perfect world, your server would only process forms that belong to your web app. In other words, your server would only handle and validate the forms that you created. However, it is possible for an attacker to create a form on his own website, fill it in with malicious information, and submit it to your server. If your server accepts this malicious information, all sorts of bad things can happen next.</p>
    <p>You can prevent a CSRF attack by making sure that the form submission originates from your web app. One way to do this is to keep a unique token hidden inside your HTML <code>&lt;form&gt;</code> tag that cannot be guessed by attackers. When the form POSTs to your server, the token is checked first. If the token does not match, your server rejects the form submission and does not touch the form data. If the token matches, the server proceeds with form handling and validation.</p>
    <p>Flask-WTF does all of this with an easy one-liner. Just configure Flask-WTF with a secret key, and Flask-WTF takes care of generating and managing unique tokens for your forms.</p>
    <p><strong>app/routes.py</strong></p>
    <pre>from flask import Flask, render_template, request, flash&#x000A;    from forms import ContactForm&#x000A;    &#x000A;    app = Flask(__name__) &#x000A;    &#x000A;    app.secret_key = 'development key'&#x000A;    </pre>
    <p>Here in line six, I set the secret key to ‘development key’. Feel free to make yours more complex, longer, and alphanumeric.</p>
    <p>Now that we’ve imported and configured our contact form, we can use it in a URL mapping in <code>routes.py</code>. Let’s go ahead and create that URL mapping.</p>
    <p><strong>app/routes.py</strong></p>
    <pre>@app.route('/contact')&#x000A;    def contact():&#x000A;      form = ContactForm()&#x000A;      return render_template('contact.html', form=form)&#x000A;    </pre>
    <p>Now when someone visits the URL <code>/contact</code>, the function <code>contact()</code> will execute. Inside <code>contact()</code>, we first create a new instance of our contact form in line three and sent it to a web template named <code>contact.html</code> in line four. We will create this web template shortly.</p>
    <p>We still have some work to do here though. Figure 1 showed that if a GET request is sent to the server, the web page containing the form should be retrieved and loaded in browser. If the server receives a POST request, a function should capture the form field data and check if it’s valid. In Python terms, this logic can be expressed in an <code>if...else</code> statement. There is a Flask class for distinguishing between GET and POST requests, so let’s start by importing that class at the beginning of <code>routes.py</code> and add the <code>if...else</code> logic to the <code>contact()</code> function.</p>
    <p><strong>app/routes.py</strong></p>
    <pre>from flask import Flask, render_template, request&#x000A;    .&#x000A;    .&#x000A;    .&#x000A;    @app.route('/contact', methods=['GET', 'POST'])&#x000A;    def contact():&#x000A;      form = ContactForm()&#x000A;    &#x000A;      if request.method == 'POST':&#x000A;        return 'Form posted.'&#x000A;    &#x000A;      elif request.method == 'GET':&#x000A;        return render_template('contact.html', form=form)&#x000A;    </pre>
    <p>We already imported the Flask class and <code>render_template()</code> in the <a href="http://net.tutsplus.com/tutorials/python-tutorials/an-introduction-to-pythons-flask-framework" rel="nofollow external" class="bo">previous article</a>, so here we import one more Flask class named <code>request</code>. <code>request</code> determines whether the current HTTP method is a GET or a POST. Next is the <code>if...else</code> logic to the <code>contact()</code> function (lines 9-13).</p>
    <blockquote><p>In the case of a POST request, a string indicating that the form has been posted will be returned.</p></blockquote>
    <p>This string is a temporary placeholder, and we’ll replace it with real code in the final step of this article. Otherwise, if the request uses GET, we return the web template <code>contact.html</code> that contains the form.</p>
    <p>The next step is to create the web template <code>contact.html</code> and put it inside the <code>templates/</code> folder.</p>
    <p><strong>app/templates/contact.html</strong></p>
    <pre>{% extends "layout.html" %}&#x000A;    &#x000A;    {% block content %}&#x000A;      &lt;h2&gt;Contact&lt;/h2&gt;&#x000A;      &lt;form action="{{ url_for('contact') }}" method=post&gt;&#x000A;        {{ form.hidden_tag() }}&#x000A;    &#x000A;        {{ form.name.label }}&#x000A;        {{ form.name }}&#x000A;    &#x000A;        {{ form.email.label }}&#x000A;        {{ form.email }}&#x000A;    &#x000A;        {{ form.subject.label }}&#x000A;        {{ form.subject }}&#x000A;    &#x000A;        {{ form.message.label }}&#x000A;        {{ form.message }}&#x000A;    &#x000A;        {{ form.submit }}&#x000A;      &lt;/form&gt;&#x000A;    {% endblock %} &#x000A;    </pre>
    <p>As with <code>home.html</code> and <code>about.html</code>, the <code>contact.html</code> template extends <code>layout.html</code> and fills the ‘content’ block with its own text. We first specify where to send the form data on submission by setting the <code>&lt;form&gt;</code> element’s <code>action</code> attribute to the <code>contact()</code> function we created in <code>routes.py</code> (line five). Next, we let the Jinja2 template engine generate the bulk of the form for us (lines 6-20). We start by inserting a hidden tag in line six to protect against CSRF exploits. Lastly, we add each label and field of the form.</p>
    <p>We are now ready to see the result of all our work. Just type the following:</p>
    <pre>$ python routes.py&#x000A;    </pre>
    <p>Then go to <a href="http://localhost:5000/contact" rel="nofollow external" class="bo">http://localhost:5000/contact</a> in your favorite web browser.</p>
    <div> <img src="http://cdn.tutsplus.com/net.tutsplus.com/authors/lalith-polepeddi/intro-to-flask-p2-contact1.png" style="max-width: 100%; height: auto;">
    </div>
    <p>The contact page containing the form has loaded. Fill in the form fields and click the "Send" button. You’ll see a page that looks like this:</p>
    <div> <img src="http://cdn.tutsplus.com/net.tutsplus.com/authors/lalith-polepeddi/intro-to-flask-p2-contact2.png" style="max-width: 100%; height: auto;">
    </div>
    <p>Awesome! Form submission is working.</p>
    <p>Let’s quickly review everything we did in this section:</p>
    <ul>
    <li>We type in the URL <a href="http://localhost:5000/contact" rel="nofollow external" class="bo">http://localhost:5000/contact</a> into the browser’s address bar.</li>
    <li>The GET request hits <code>routes.py</code>, where the URL <code>/contact</code> is mapped to the function <code>contact()</code>.</li>
    <li>The function <code>contact()</code> executes, where a variable named <code>form</code> containing a usable instance of the <code>ContactForm</code> class is sent to the web template <code>contact.html</code>.</li>
    <li>
    <code>contact.html</code> generates the contact form’s HTML.</li>
    <li>Rendered HTML is sent back to <code>routes.py</code>.</li>
    <li>
    <code>routes.py</code> sends the HTML back to the browser and we see the contact page containing the form.</li>
    <li>We fill in the contact form and submit it by clicking the “Send” button.</li>
    <li>The POST request hits <code>routes.py</code>, where the URL <code>/contact</code> is mapped to the function <code>contact()</code>.</li>
    <li>The function <code>contact()</code> executes once more, this time following the <code>if...else</code> control flow for the HTTP POST request.</li>
    <li>The string <code>'Form posted.'</code> is sent back to the browser, giving us the screen above.</li>
    </ul>
    <p>— <strong>Checkpoint: 05_contact_form</strong> —</p>
    <p>This is cool, but the contact form looks ugly. Let’s make it look better by adding some CSS. Open up <code>main.css</code> and add these rules:</p>
    <p><strong>static/css/main.css</strong></p>
    <pre>/* Contact form */&#x000A;    form label {&#x000A;      font-size: 1.2em;&#x000A;      font-weight: bold;&#x000A;      display: block;&#x000A;      padding: 10px 0;&#x000A;    }&#x000A;    &#x000A;    form input#name,&#x000A;    form input#email,&#x000A;    form input#subject {&#x000A;      width: 400px;&#x000A;      background-color: #fafafa;&#x000A;      -webkit-border-radius: 3px;&#x000A;         -moz-border-radius: 3px;&#x000A;              border-radius: 3px;&#x000A;      border: 1px solid #cccccc;&#x000A;      padding: 5px;&#x000A;      font-size: 1.1em;&#x000A;    }&#x000A;    &#x000A;    form textarea#message {&#x000A;      width: 500px;&#x000A;      height: 100px;&#x000A;      background-color: #fafafa;&#x000A;      -webkit-border-radius: 3px;&#x000A;         -moz-border-radius: 3px;&#x000A;              border-radius: 3px;&#x000A;      border: 1px solid #cccccc;&#x000A;      margin-bottom: 10px;&#x000A;      padding: 5px;&#x000A;      font-size: 1.1em;&#x000A;    }&#x000A;    &#x000A;    form input#submit {&#x000A;      display: block;&#x000A;      -webkit-border-radius: 3px; &#x000A;         -moz-border-radius: 3px;&#x000A;              border-radius: 3px;&#x000A;      border:1px solid #d8d8d8;&#x000A;      padding: 10px; &#x000A;      font-weight:bold; &#x000A;      text-align: center; &#x000A;      color: #000000; &#x000A;      background-color: #f4f4f4;&#x000A;      background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f4f4f4), color-stop(100%, #e5e5e5));&#x000A;      background-image: -webkit-linear-gradient(top, #f4f4f4, #e5e5e5);&#x000A;      background-image: -moz-linear-gradient(top, #f4f4f4, #e5e5e5);&#x000A;      background-image: -ms-linear-gradient(top, #f4f4f4, #e5e5e5);&#x000A;      background-image: -o-linear-gradient(top, #f4f4f4, #e5e5e5);&#x000A;      background-image: linear-gradient(top, #f4f4f4, #e5e5e5);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#f4f4f4, endColorstr=#e5e5e5);&#x000A;    }&#x000A;    &#x000A;    form input#submit:hover{&#x000A;      cursor: pointer;&#x000A;      border:1px solid #c1c1c1; &#x000A;      background-color: #dbdbdb;&#x000A;      background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dbdbdb), color-stop(100%, #cccccc));&#x000A;      background-image: -webkit-linear-gradient(top, #dbdbdb, #cccccc);&#x000A;      background-image: -moz-linear-gradient(top, #dbdbdb, #cccccc);&#x000A;      background-image: -ms-linear-gradient(top, #dbdbdb, #cccccc);&#x000A;      background-image: -o-linear-gradient(top, #dbdbdb, #cccccc);&#x000A;      background-image: linear-gradient(top, #dbdbdb, #cccccc);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#dbdbdb, endColorstr=#cccccc);&#x000A;    }&#x000A;    </pre>
    <p>Switch back to the browser and refresh <a href="http://localhost:5000/contact" rel="nofollow external" class="bo">http://localhost:5000/contact</a> to see the result of the CSS.</p>
    <div> <img src="http://cdn.tutsplus.com/net.tutsplus.com/authors/lalith-polepeddi/intro-to-flask-p2-contact3.png" style="max-width: 100%; height: auto;">
    </div>
    <p>This looks much better. Let’s move on to form validation.</p>
    <p>— <strong>Checkpoint: 06_contact_styling</strong> —</p>
    <h3>Validating Form Data</h3>
    <p>A user can now visit the URL <code>/contact</code> and fill in the form. But what happens if the user does not properly fill out the form? We need to validate the user input so that it won’t cause problems in later steps.</p>
    <p>Form validation is performed by using form validators. Fortunately, Flask-WTF comes with many useful, built-in validators that we can use right away. We’ll put these validators in the <code>ContactForm</code> class definition in <code>forms.py</code>.</p>
    <p>The most basic validator is <em>presence</em>, which simply ensures that all form fields are filled in, so let’s start here.</p>
    <p><strong>app/forms.py</strong></p>
    <pre>from flask.ext.wtf import Form, TextField, TextAreaField, SubmitField, validators, ValidationError&#x000A;    &#x000A;    class ContactForm(Form):&#x000A;      name = TextField("Name",  [validators.Required()])&#x000A;      email = TextField("Email",  [validators.Required()])&#x000A;      subject = TextField("Subject",  [validators.Required()])&#x000A;      message = TextAreaField("Message",  [validators.Required()])&#x000A;      submit = SubmitField("Send")&#x000A;    </pre>
    <p>We start by importing <code>validators</code> and <code>ValidationError</code> from Flask-WTF. This gives us access to Flask-WTF’s built-in validators. Next we add <code>[validators.Required()]</code> to each form field in order to validate its presence. Notice that this validator is inside a Python list, meaning that we can easily add more validators to this list.</p>
    <p>Next, let’s require email addresses to match the pattern <code><a href="mailto:user@example.com">user@example.com</a></code> by adding the <em>Email</em> validator to the email field.</p>
    <p><strong>app/forms.py</strong></p>
    <pre>from flask.ext.wtf import Form, TextField, TextAreaField, SubmitField, validators, ValidationError&#x000A;    &#x000A;    class ContactForm(Form):&#x000A;      name = TextField("Name",  [validators.Required()])&#x000A;      email = TextField("Email",  [validators.Required(), validators.Email()])&#x000A;      subject = TextField("Subject",  [validators.Required()])&#x000A;      message = TextAreaField("Message",  [validators.Required()])&#x000A;      submit = SubmitField("Send")&#x000A;    </pre>
    <p>That does it for our form validations.</p>
    <p>— <strong>Checkpoint: 07_form_validations</strong> —</p>
    <h3>Flashing Error Messages</h3>
    <p>Looking back at Figure 1, if any validation check fails, the contact page should reload with an error message so that the user can fix the mistake and try again. This error message must only appear when validation fails and disappear when the mistake has been fixed.</p>
    <p>Our next step is to send this sort of temporary error message to the user when validation fails. Flask makes this really easy by using its <code>flash()</code> function. Let’s start by opening <code>routes.py</code> and importing Flask’s <code>flash()</code> function at the beginning of the script.</p>
    <p><strong>app/routes.py</strong></p>
    <pre>from flask import Flask, render_template, request, flash&#x000A;    </pre>
    <p>After the contact form POSTs to the server, any validation failure should reload the form with a helpful error message. Otherwise, the input data can be used for future processing. Once again, this logic can be expressed in an <code>if...else</code> statement. Let’s add this <code>if...else</code> logic to the <code>contact()</code> function inside the <code>if request.method == 'POST':</code> block.</p>
    <p><strong>app/routes.py</strong></p>
    <pre>@app.route('/contact', methods=['GET', 'POST'])&#x000A;    def contact():&#x000A;      form = ContactForm()&#x000A;    &#x000A;      if request.method == 'POST':&#x000A;        if form.validate() == False:&#x000A;          flash('All fields are required.')&#x000A;          return render_template('contact.html', form=form)&#x000A;        else:&#x000A;          return 'Form posted.'&#x000A;    &#x000A;      elif request.method == 'GET':&#x000A;        return render_template('contact.html', form=form)&#x000A;    </pre>
    <p>If any validation check fails, <code>form.validate()</code> will be <code>False</code>. The error message <code>All fields are required</code> will be sent to <code>contact.html</code>. Otherwise, we’ll see the temporary placeholder string <code>Form posted</code>, indicating the form has been successfully submitted.</p>
    <p>Next, let’s modify <code>contact.html</code> so that it can receive and display these temporary error messages. See the following block:</p>
    <pre>{% for message in get_flashed_messages() %}&#x000A;      &lt;div class="flash"&gt;{{ message }}&lt;/div&gt;&#x000A;    {% endfor %}&#x000A;    </pre>
    <p>The function <code>get_flashed_messages()</code> pulls all flashed messages and returns them. We then simply display each flashed message by using a Jinja2 <code>for</code> loop. Add this code block to <code>contact.html</code> after <code>&lt;h2&gt;Contact&lt;/h2&gt;</code> and before the <code>&lt;form&gt;</code> tag.</p>
    <p><strong>app/templates/contact.html</strong></p>
    <pre>{% extends "layout.html" %}&#x000A;    &#x000A;    {% block content %}&#x000A;      &lt;h2&gt;Contact&lt;/h2&gt;&#x000A;    &#x000A;      {% for message in get_flashed_messages() %}&#x000A;        &lt;div class="flash"&gt;{{ message }}&lt;/div&gt;&#x000A;      {% endfor %}&#x000A;      &#x000A;      &lt;form action="{{ url_for('contact') }}" method=post&gt;&#x000A;        {{ form.hidden_tag() }}&#x000A;    &#x000A;        {{ form.name.label }}&#x000A;        {{ form.name }}&#x000A;    &#x000A;        {{ form.email.label }}&#x000A;        {{ form.email }}&#x000A;    &#x000A;        {{ form.subject.label }}&#x000A;        {{ form.subject }}&#x000A;    &#x000A;        {{ form.message.label }}&#x000A;        {{ form.message }}&#x000A;    &#x000A;        {{ form.submit }}&#x000A;      &lt;/form&gt;&#x000A;    {% endblock %}&#x000A;    </pre>
    <p>Lastly, let’s add a CSS rule in <code>main.css</code> so that flashed error messages look pretty.</p>
    <p><strong>main.css</strong></p>
    <pre>/* Message flashing */&#x000A;    .flash {&#x000A;      background-color: #FBB0B0;&#x000A;      padding: 10px;&#x000A;      width: 400px;&#x000A;    }&#x000A;    </pre>
    <p>Open your browser and visit <a href="http://localhost:5000/contact" rel="nofollow external" class="bo">http://localhost:5000/contact</a>. Leave all the fields blank and click “Send” to test whether form validation and error message flashing work.</p>
    <div> <img src="http://cdn.tutsplus.com/net.tutsplus.com/authors/lalith-polepeddi/intro-to-flask-p2-contact4.png" style="max-width: 100%; height: auto;">
    </div>
    <p>This is sweet! We have successfully sent an error message to our contact form if a validation check fails.</p>
    <p>— <strong>Checkpoint: 08_error_message_flashing</strong> —</p>
    <p>But we’re not done; we can actually do a little better. Instead of having one generic error message for all failed validation checks, it would be better to have a specific error message for each failed validation check. For example, if the user forgets to fill in the subject field, a specific error message that says <code>Please enter a subject</code> would be flashed. Likewise, if the user forgets to fill in their name, we’d flash a specific error message that says <code>Please enter your name</code>. We can accomplish this pretty easily, so let’s start by writing our specific error messages inside each validator in <code>forms.py</code>.</p>
    <p><strong>app/forms.py</strong></p>
    <pre>from flask.ext.wtf import Form, TextField, TextAreaField, SubmitField, validators, ValidationError&#x000A;    &#x000A;    class ContactForm(Form):&#x000A;      name = TextField("Name",  [validators.Required("Please enter your name.")])&#x000A;      email = TextField("Email",  [validators.Required("Please enter your email address."), validators.Email("Please enter your email address.")])&#x000A;      subject = TextField("Subject",  [validators.Required("Please enter a subject.")])&#x000A;      message = TextAreaField("Message",  [validators.Required("Please enter a message.")])&#x000A;      submit = SubmitField("Send")&#x000A;    </pre>
    <p>We simply write specific error messages inside each validator. Next, let’s modify <code>contact.html</code> to receive and display these specific error messages. Earlier, we relied on the function <code>get_flashed_messages()</code> to pull flashed error messages, and looped over them to display them. Let’s replace that block with this one:</p>
    <pre>{% for message in form.name.errors %}&#x000A;      &lt;div class="flash"&gt;{{ message }}&lt;/div&gt;&#x000A;    {% endfor %}&#x000A;    &#x000A;    {% for message in form.email.errors %}&#x000A;      &lt;div class="flash"&gt;{{ message }}&lt;/div&gt;&#x000A;    {% endfor %}&#x000A;    &#x000A;    {% for message in form.subject.errors %}&#x000A;      &lt;div class="flash"&gt;{{ message }}&lt;/div&gt;&#x000A;    {% endfor %}&#x000A;    &#x000A;    {% for message in form.message.errors %}&#x000A;      &lt;div class="flash"&gt;{{ message }}&lt;/div&gt;&#x000A;    {% endfor %}&#x000A;    </pre>
    <p>Here we use the <code>errors</code> attribute for each form field to pull the specific error messages and loop over them using the Jinja2 <code>for</code> loop to display them.</p>
    <p>Putting it all together, <code>contact.html</code> now look like this:</p>
    <p><strong>app/templates/contact.html</strong></p>
    <pre>{% extends "layout.html" %}&#x000A;    &#x000A;    {% block content %}&#x000A;      &lt;h2&gt;Contact&lt;/h2&gt;&#x000A;    &#x000A;      {% for message in form.name.errors %}&#x000A;        &lt;div class="flash"&gt;{{ message }}&lt;/div&gt;&#x000A;      {% endfor %}&#x000A;    &#x000A;      {% for message in form.email.errors %}&#x000A;        &lt;div class="flash"&gt;{{ message }}&lt;/div&gt;&#x000A;      {% endfor %}&#x000A;    &#x000A;      {% for message in form.subject.errors %}&#x000A;        &lt;div class="flash"&gt;{{ message }}&lt;/div&gt;&#x000A;      {% endfor %}&#x000A;    &#x000A;      {% for message in form.message.errors %}&#x000A;        &lt;div class="flash"&gt;{{ message }}&lt;/div&gt;&#x000A;      {% endfor %}&#x000A;      &#x000A;      &lt;form action="{{ url_for('contact') }}" method=post&gt;&#x000A;        {{ form.hidden_tag() }}&#x000A;    &#x000A;        {{ form.name.label }}&#x000A;        {{ form.name }}&#x000A;    &#x000A;        {{ form.email.label }}&#x000A;        {{ form.email }}&#x000A;    &#x000A;        {{ form.subject.label }}&#x000A;        {{ form.subject }}&#x000A;    &#x000A;        {{ form.message.label }}&#x000A;        {{ form.message }}&#x000A;    &#x000A;        {{ form.submit }}&#x000A;      &lt;/form&gt;&#x000A;    {% endblock %} &#x000A;    </pre>
    <p>Switch back to the browser, go to <a href="http://localhost:5000/contact" rel="nofollow external" class="bo">http://localhost:5000/contact</a>, and click “Send”. Be sure to leave all form fields blank.</p>
    <div> <img src="http://cdn.tutsplus.com/net.tutsplus.com/authors/lalith-polepeddi/intro-to-flask-p2-contact5.png" style="max-width: 100%; height: auto;">
    </div>
    <p>Perfect! The user now has helpful error messages if he makes a mistake.</p>
    <p>— <strong>Checkpoint: 09_specific_message_flashing</strong> —</p>
    <p>We accomplished a lot in this section. We created a contact form from scratch, learned how to protect against CSRF attacks, distinguished between GET and POST requests, enforced form validations, and flashed specific error messages if necessary. We now need to email the message.</p>
    <hr>
    <h2>Flask-Mail</h2>
    <p><a href="http://packages.python.org/flask-mail/" rel="nofollow external" class="bo">Flask-Mail</a> is a Flask exension that enables you to send emails from your Flask app. The steps below are similar to those we took to use Flask-WTF.</p>
    <p>Let’s start by installing Flask-Mail.</p>
    <pre>$ pip install flask-mail&#x000A;    </pre>
    <h3>Configuring Flask-Mail</h3>
    <p>Next, lets import Flask-Mail into <code>routes.py</code> and configure it so that we can start using it.</p>
    <p><strong>app/routes.py</strong></p>
    <pre>from flask import Flask, render_template, request, flash&#x000A;    from forms import ContactForm&#x000A;    from flask.ext.mail import Message, Mail&#x000A;    &#x000A;    mail = Mail()&#x000A;    &#x000A;    app = Flask(__name__)&#x000A;    &#x000A;    app.secret_key = 'development key'&#x000A;    &#x000A;    app.config["MAIL_SERVER"] = "smtp.gmail.com"&#x000A;    app.config["MAIL_PORT"] = 465&#x000A;    app.config["MAIL_USE_SSL"] = True&#x000A;    app.config["MAIL_USERNAME"] = '<a href="mailto:contact@example.com">contact@example.com</a>'&#x000A;    app.config["MAIL_PASSWORD"] = 'your-password'&#x000A;    &#x000A;    mail.init_app(app)&#x000A;    </pre>
    <p>First, we import the <code>Message</code> and <code>Mail</code> classes from Flask-Mail (line three). We’ll use the <code>Message</code> class to compose a new email and the <code>Mail</code> class to send the email. Next, we create the <code>mail</code> variable that contain a usable instance of the <code>Mail</code> class (line five).</p>
    <p>We then configure Flask-Mail with few SMTP server settings (lines 11-15). I used Gmail’s SMTP server settings here, but you can easily use your favorite email provider. Just search for its SMTP settings and you’ll be set.</p>
    <blockquote><p>For example, if you want to use Yahoo! Mail, just search for “yahoo mail smtp server settings” and update the configuration.</p></blockquote>
    <p>Make sure to enter a real email and password in <code>app.config["MAIL_USERNAME"]</code> and <code>app.config["MAIL_PASSWORD"]</code>, respectively. This will be the account from which you’ll send email.</p>
    <p>Finally, we attach <code>mail</code> to our Flask app so that we can start using it (line 17).</p>
    <p>You’ve probably seen groups use contact email addresses like <code><a href="mailto:contact@example.com">contact@example.com</a></code> or <code><a href="mailto:support@example.com">support@example.com</a></code>. If you own your own domain and can create a new contact email address, go ahead and put that email address in <code>app.config["MAIL_USERNAME"]</code>. Otherwise, you can use your personal email address just to see how this works.</p>
    <h3>Sending an Email</h3>
    <p>Now that the configuration is complete, let’s compose a new email containing the contact form data and send it. We should only send an email if the form has been submitted and all validation checks pass. This means we need to work inside the <code>if request.method == 'POST':</code> block again. We’ve already added logic inside the <code>if form.validate() == False:</code> block to handle validation failures. If all validation checks pass, <code>form.validate()</code> will be <code>True</code> and the program will enter the <code>else</code> block. Therefore, let’s go ahead and add logic inside the <code>else:</code> block.</p>
    <p><strong>app/routes.py</strong></p>
    <pre>@app.route('/contact', methods=['GET', 'POST'])&#x000A;    def contact():&#x000A;      form = ContactForm()&#x000A;    &#x000A;      if request.method == 'POST':&#x000A;        if form.validate() == False:&#x000A;          flash('All fields are required.')&#x000A;          return render_template('contact.html', form=form)&#x000A;        else:&#x000A;          msg = Message(form.subject.data, sender='<a href="mailto:contact@example.com">contact@example.com</a>', recipients=['<a href="mailto:your_email@example.com">your_email@example.com</a>'])&#x000A;          msg.body = """&#x000A;          From: %s &lt;%s&gt;&#x000A;          %s&#x000A;          """ % (form.name.data, form.email.data, form.message.data)&#x000A;          mail.send(msg)&#x000A;    &#x000A;          return 'Form posted.'&#x000A;    &#x000A;      elif request.method == 'GET':&#x000A;        return render_template('contact.html', form=form)&#x000A;    </pre>
    <p>We start by composing a new message (line 10). The <code>Message</code> class takes a subject line, a “from” address, and a “to” address. We then collect the contact form’s subject field data with <code>form.subject.data</code> and set it as the new message’s subject line. The email will be sent from the account you configured in <code>app.config["MAIL_USERNAME"]</code>, so that’s what we used here for the from address. The email will be sent to your personal email address so that you can receive and respond to new messages.</p>
    <p>Next, we write the email itself (lines 11-14). We include the user’s name, email and message. I use Python’s string formatting operator <code>%</code> to format the email. And finally, we use <code>mail.send(msg)</code> to send the email (line 15).</p>
    <p>Let’s see if everything works. Visit <a href="http://localhost:5000/contact" rel="nofollow external" class="bo">http://localhost:5000/contact</a>, fill out each field, and click “Send.” If all goes well, you’ll receive a new email from your Flask app.</p>
    <p>— <strong>Checkpoint: 10_send_email</strong> —</p>
    <h3>Tidying Up</h3>
    <p>Our penultimate step is to remove the temporary placeholder string <code>'Form posted.'</code> with a message thanking the user for his feedback. This message should only appear if our application sends the email. Once again, this logic can be expressed in an <code>if...else</code> statement.</p>
    <blockquote><p>When the contact form has been successfully submitted, we’ll send a success flag from <code>routes.py</code> to <code>contact.html</code>.</p></blockquote>
    <p>We’ll place the <code>if...else</code> logic inside <code>contact.html</code>. If the success flag is set to <code>True</code>, we’ll display the thank you message. Otherwise, we’ll display the contact form.</p>
    <p>Let’s start in <code>routes.py</code> inside the <code>contact()</code> function. Replace the temporary placeholder line <code>return 'Form posted.'</code> with <code>return render_template('contact.html', success=True)</code> in order to send a success flag to <code>contact.html</code>. The <code>contact()</code> function now looks like this:</p>
    <p><strong>app/routes.py</strong></p>
    <pre>@app.route('/contact', methods=['GET', 'POST'])&#x000A;    def contact():&#x000A;      form = ContactForm()&#x000A;    &#x000A;      if request.method == 'POST':&#x000A;        if form.validate() == False:&#x000A;          flash('All fields are required.')&#x000A;          return render_template('contact.html', form=form)&#x000A;        else:&#x000A;          msg = Message(form.subject.data, sender='<a href="mailto:contact@example.com">contact@example.com</a>', recipients=['<a href="mailto:your_email@example.com">your_email@example.com</a>'])&#x000A;          msg.body = """&#x000A;          From: %s &amp;lt;%s&amp;gt;&#x000A;          %s&#x000A;          """ % (form.name.data, form.email.data, form.message.data)&#x000A;          mail.send(msg)&#x000A;    &#x000A;          return render_template('contact.html', success=True)&#x000A;    &#x000A;      elif request.method == 'GET':&#x000A;        return render_template('contact.html', form=form)&#x000A;    </pre>
    <p>Next open <code>contact.html</code> and add the <code>if...else</code> logic. We’ll use <a href="http://jinja.pocoo.org/docs/templates/#if" rel="nofollow external" class="bo">Jinja2′s <code>if...else</code> syntax</a> to make this happen.</p>
    <p><strong>app/templates/contact.html</strong></p>
    <pre>{% extends "layout.html" %}&#x000A;    &#x000A;    {% block content %}&#x000A;      &lt;h2&gt;Contact&lt;/h2&gt;&#x000A;    &#x000A;      {% if success %}&#x000A;        &lt;p&gt;Thank you for your message. We'll get back to you shortly.&lt;/p&gt;&#x000A;    &#x000A;      {% else %}&#x000A;    &#x000A;        {% for message in form.name.errors %}&#x000A;          &lt;div class="flash"&gt;{{ message }}&lt;/div&gt;&#x000A;        {% endfor %}&#x000A;    &#x000A;        {% for message in form.email.errors %}&#x000A;          &lt;div class="flash"&gt;{{ message }}&lt;/div&gt;&#x000A;        {% endfor %}&#x000A;    &#x000A;        {% for message in form.subject.errors %}&#x000A;          &lt;div class="flash"&gt;{{ message }}&lt;/div&gt;&#x000A;        {% endfor %}&#x000A;    &#x000A;        {% for message in form.message.errors %}&#x000A;          &lt;div class="flash"&gt;{{ message }}&lt;/div&gt;&#x000A;        {% endfor %}&#x000A;    &#x000A;        &lt;form action="{{ url_for('contact') }}" method=post&gt;&#x000A;          {{ form.hidden_tag() }}&#x000A;    &#x000A;          {{ form.name.label }}&#x000A;          {{ form.name }}&#x000A;    &#x000A;          {{ form.email.label }}&#x000A;          {{ form.email }}&#x000A;    &#x000A;          {{ form.subject.label }}&#x000A;          {{ form.subject }}&#x000A;    &#x000A;          {{ form.message.label }}&#x000A;          {{ form.message }}&#x000A;    &#x000A;          {{ form.submit }}&#x000A;        &lt;/form&gt;&#x000A;    &#x000A;      {% endif %}&#x000A;    {% endblock %} &#x000A;    </pre>
    <p>Starting in line six, <code>{% if success %}</code> means that if the success flag we sent from <code>routes.py</code> is set to <code>True</code>, then display <code>&lt;p&gt;Thank you for your message. We'll get back to you shortly.&lt;/p&gt;</code>. Otherwise, follow the <code>{% else %}</code> branch and display the contact form. Jinja2 syntax asks that we close the <code>if...else</code> statement with <code>{% endif %}</code>, so we include that at the end (line 45).</p>
    <p>— <strong>Checkpoint: 11_success_message</strong> —</p>
    <p>Finally, let’s visit <a href="http://localhost:5000/contact" rel="nofollow external" class="bo">http://localhost:5000/contact</a> one more time. Fill in each field and click “Send”.</p>
    <div> <img src="http://cdn.tutsplus.com/net.tutsplus.com/authors/lalith-polepeddi/intro-to-flask-p2-contact6.png" style="max-width: 100%; height: auto;">
    </div>
    <p>Our last step is to add a navigation link to the contact page. In the <a href="http://net.tutsplus.com/tutorials/python-tutorials/an-introduction-to-pythons-flask-framework" rel="nofollow external" class="bo">previous article</a>, we added these links to <code>layout.html</code> inside the <code>&lt;header&gt;</code> element. Let’s also do that for the contact page (line eight).</p>
    <p><strong>app/templates/layout.html</strong></p>
    <pre>&lt;header&gt;&#x000A;      &lt;div class="container"&gt;&#x000A;        &lt;h1 class="logo"&gt;Flask App&lt;/h1&gt;&#x000A;        &lt;nav&gt;&#x000A;          &lt;ul class="menu"&gt;&#x000A;            &lt;li&gt;&lt;a href="{{ url_for('home') }}"&gt;Home&lt;/a&gt;&lt;/li&gt;&#x000A;            &lt;li&gt;&lt;a href="{{ url_for('about') }}"&gt;About&lt;/a&gt;&lt;/li&gt;&#x000A;            &lt;li&gt;&lt;a href="{{ url_for('contact') }}"&gt;Contact&lt;/a&gt;&lt;/li&gt;&#x000A;          &lt;/ul&gt;&#x000A;        &lt;/nav&gt;&#x000A;      &lt;/div&gt;&#x000A;    &lt;/header&gt;&#x000A;    </pre>
    <p>— <strong>Checkpoint: 12_contact_nav_link</strong> —</p>
    <p>Open up the browser and refresh <a href="http://localhost:5000/" rel="nofollow external" class="bo">http://localhost:5000/</a> to see the newly added navigation link.</p>
    <div> <img src="http://cdn.tutsplus.com/net.tutsplus.com/authors/lalith-polepeddi/intro-to-flask-p2-contact7.png" style="max-width: 100%; height: auto;">
    </div>
    <hr>
    <h2>Conclusion</h2>
    <p>In article, we added a contact page that contains a form to our Flask app. Forms appear in several places in web applications, most notably during sign up and login. This workflow can be adapted to meet those needs. In creating a contact page, we learned how to use Flask extensions.</p>
    <blockquote><p>Flask extensions are simple, powerful tools that extend the functionality of your Flask-based app.</p></blockquote>
    <p>Check out the <a href="http://flask.pocoo.org/extensions/" rel="nofollow external" class="bo">Flask Extension Registry</a> to explore many more extensions that you can integrate into your app.</p>
    </div>
]]>
</Body>
<Summary>In the previous article in this mini-series, we leveraged Flask to build a simple website that contains “Home” and “About” pages using a generalized workflow that we can apply to other Flask-based...</Summary>
<Website>http://feedproxy.google.com/~r/nettuts/~3/6lEqpByIGTI/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/26599/guest@my.umbc.edu/3cbc0633d6fb6358a21d67f9a4db7696/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>flask</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>python</Tag>
<Tag>sql</Tag>
<Tag>wed</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 22 Mar 2013 16:12:11 -0400</PostedAt>
<EditAt>Fri, 22 Mar 2013 16:12:11 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="26598" important="false" status="posted" url="https://my3.my.umbc.edu/posts/26598">
<Title>Maintaining Your Startup&#8217;s Focus</Title>
<Body>
<![CDATA[
    <div class="html-content">Too many passions can derail you. Find one that sticks.</div>
]]>
</Body>
<Summary>Too many passions can derail you. Find one that sticks.</Summary>
<Website>http://feedproxy.google.com/~r/YoungentrepreneurcomBlog/~3/hGxxsggyHNQ/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/26598/guest@my.umbc.edu/4f807505d26196619b7a1a1da117989d/api/pixel</TrackingUrl>
<Tag>business-growth-strategies</Tag>
<Tag>focus</Tag>
<Tag>motivation</Tag>
<Tag>passion</Tag>
<Tag>productivity</Tag>
<Tag>startup-basics</Tag>
<Group token="entrepreneurship">Alex. Brown Center for Entrepreneurship</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/entrepreneurship</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xsmall.png?1771000363</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/original.jpg?1771000363</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xxlarge.png?1771000363</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xlarge.png?1771000363</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/large.png?1771000363</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/medium.png?1771000363</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/small.png?1771000363</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xsmall.png?1771000363</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xxsmall.png?1771000363</AvatarUrl>
<Sponsor>The Alex. Brown Center for Entrepreneurship</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 22 Mar 2013 16:00:13 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="30086" important="false" status="posted" url="https://my3.my.umbc.edu/posts/30086">
<Title>HBO GO-It-Alone?</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>HBO mulls breaking apart from the bundle. Will its broadband partners acquiesce?</p>
    <p>Earlier this week, I <a href="http://www.technologyreview.com/view/512676/the-television-will-not-be-revolutionized/" rel="nofollow external" class="bo">mentioned</a> what Aereo’s CEO had told me would be a metric for progress in TV innovation: à la carte pricing for individual networks, rather than a compulsory bundle of countless channels we don’t watch. Many people had their eyes on HBO, the strongest brand in cable right now, as the maverick that might make a move towards separating its content from cable subscriptions. After all, it was making just this <a href="http://variety.com/2012/tv/news/hbo-cuts-the-cord-for-international-launch-1118058484/" rel="nofollow external" class="bo">happen in Scandinavia</a>, going directly head-to-head with the likes of Netflix there.</p>
    </div>
]]>
</Body>
<Summary>HBO mulls breaking apart from the bundle. Will its broadband partners acquiesce?  Earlier this week, I mentioned what Aereo’s CEO had told me would be a metric for progress in TV innovation: à la...</Summary>
<Website>http://www.technologyreview.com/view/512836/hbo-go-it-alone/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/30086/guest@my.umbc.edu/ae8067405362a86f106bb3cbbc6cd65b/api/pixel</TrackingUrl>
<Tag>development</Tag>
<Tag>internet</Tag>
<Tag>mit</Tag>
<Tag>technology</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 22 Mar 2013 14:56:04 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="26592" important="false" status="posted" url="https://my3.my.umbc.edu/posts/26592">
<Title>Career Week 2013 - April 1-4</Title>
<Tagline>Choose a career that won't make you feel like a zombie!</Tagline>
<Body>
<![CDATA[
    <div class="html-content">The decisions that you have to make when choosing a career path may make you feel as alone as a survivor in a post-apocalyptic world, but it doesn't have to be that way! Check out the workshops, networking events, and skill-building seminars leading up to the Spring Career Fair on Thursday, April 4th.<div><br></div>
    <div>Students of all levels (undergraduate and graduate) are encouraged to attend! For more information and the calendar of events, follow the link below!</div>
    </div>
]]>
</Body>
<Summary>The decisions that you have to make when choosing a career path may make you feel as alone as a survivor in a post-apocalyptic world, but it doesn't have to be that way! Check out the workshops,...</Summary>
<Website>http://www.careers.umbc.edu/careerweek/index.php</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/26592/guest@my.umbc.edu/44603bd4a70e762da293a45848aec473/api/pixel</TrackingUrl>
<Tag>binf</Tag>
<Tag>bioc</Tag>
<Tag>biol</Tag>
<Tag>careers</Tag>
<Tag>ched</Tag>
<Tag>chem</Tag>
<Tag>math</Tag>
<Tag>phse</Tag>
<Tag>phys</Tag>
<Tag>stat</Tag>
<Group token="cnmsadvising">College of Natural and Mathematical Sciences Advising</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/cnmsadvising</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/475/61f5727176d8301926b7c19064396eb6/xsmall.png?1654873031</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/475/61f5727176d8301926b7c19064396eb6/original.png?1654873031</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/475/61f5727176d8301926b7c19064396eb6/xxlarge.png?1654873031</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/475/61f5727176d8301926b7c19064396eb6/xlarge.png?1654873031</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/475/61f5727176d8301926b7c19064396eb6/large.png?1654873031</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/475/61f5727176d8301926b7c19064396eb6/medium.png?1654873031</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/475/61f5727176d8301926b7c19064396eb6/small.png?1654873031</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/475/61f5727176d8301926b7c19064396eb6/xsmall.png?1654873031</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/475/61f5727176d8301926b7c19064396eb6/xxsmall.png?1654873031</AvatarUrl>
<Sponsor>UMBC Career Services Center</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/026/592/7de704a5bec448e339f90dae5df9b020/xxlarge.jpg?1363976300</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/026/592/7de704a5bec448e339f90dae5df9b020/xlarge.jpg?1363976300</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/026/592/7de704a5bec448e339f90dae5df9b020/large.jpg?1363976300</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/026/592/7de704a5bec448e339f90dae5df9b020/medium.jpg?1363976300</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/026/592/7de704a5bec448e339f90dae5df9b020/small.jpg?1363976300</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/026/592/7de704a5bec448e339f90dae5df9b020/xsmall.jpg?1363976300</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/026/592/7de704a5bec448e339f90dae5df9b020/xxsmall.jpg?1363976300</ThumbnailUrl>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 22 Mar 2013 14:44:43 -0400</PostedAt>
<EditAt>Thu, 28 Mar 2013 14:56:53 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="26593" important="false" status="posted" url="https://my3.my.umbc.edu/posts/26593">
<Title>March Madness is everywhere, even our chalkboard hallway!</Title>
<Body>
<![CDATA[
    <div class="html-content">March Madness is everywhere, even our chalkboard hallway!<br><br><a href="http://www.facebook.com/photo.php?fbid=10151303317311076&amp;set=a.10150211271956076.315093.82137826075&amp;type=1&amp;relevant_count=1" title="" rel="nofollow external" class="bo"><img src="https://fbcdn-photos-a.akamaihd.net/hphotos-ak-ash4/229442_10151303317311076_968875903_s.jpg" alt="" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>March Madness is everywhere, even our chalkboard hallway!</Summary>
<Website>http://www.facebook.com/photo.php?fbid=10151303317311076&amp;set=a.10150211271956076.315093.82137826075&amp;type=1</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/26593/guest@my.umbc.edu/d2f1b02271a4d8f23581287d66a4a3bc/api/pixel</TrackingUrl>
<Tag>ccna</Tag>
<Tag>ceh</Tag>
<Tag>centers</Tag>
<Tag>cisco</Tag>
<Tag>cyber</Tag>
<Tag>cybersecurity</Tag>
<Tag>information</Tag>
<Tag>it</Tag>
<Tag>leadership</Tag>
<Tag>management</Tag>
<Tag>microsoft</Tag>
<Tag>project</Tag>
<Tag>security</Tag>
<Tag>technology</Tag>
<Tag>training</Tag>
<Tag>umbc</Tag>
<Group token="retired-575">UMBC Training Centers</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-575</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xsmall.png?1361981335</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/original.jpg?1361981335</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xxlarge.png?1361981335</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xlarge.png?1361981335</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/large.png?1361981335</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/medium.png?1361981335</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/small.png?1361981335</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xsmall.png?1361981335</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xxsmall.png?1361981335</AvatarUrl>
<Sponsor>UMBC Training Centers</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 22 Mar 2013 14:22:49 -0400</PostedAt>
<EditAt>Fri, 22 Mar 2013 14:22:49 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="123419" important="false" status="posted" url="https://my3.my.umbc.edu/posts/123419">
<Title>Alums Collaborate to Create Music Video</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>More than a dozen members of the UMBC community — including at least eight alumni — collaborated recently to create a music video entitled “Adapt.” Performed by “Ko the Timeless” — AKA <strong>Koushik Chatterjee</strong> ’10, financial economics — the song examines the difficulties and rewards of staying true to one’s heritage.</p>
    <p>[youtube <a href="http://www.youtube.com/watch?v=_2nQnwfzulY">http://www.youtube.com/watch?v=_2nQnwfzulY</a>]</p>
    <p>Besides Chatterjee, the video features appearances by <strong>Nimit Bhatt ’11</strong>, political science, and student<strong> Gurpreet Singh</strong>, who appeared on this season of American Idol. The video was produced by Chiet Productions, including alumnus <strong>Tony Shadman ’10</strong>, music, and former students Justin Chiet and Brittany Warrington. The song was produced by <strong>Sureet Sandhu</strong> ’99, HESP, of Digital Desi Productions, and engineered by <strong>Ray Remesch</strong> ’08, music. Also featured in the video: <strong>Ivan Beltran</strong> ’08, visual arts, <strong>Dan Toal</strong>  ’10, music, <strong>Monica Bedi</strong> ’09, political science, and <strong>Aniket Patel</strong> ’08, political science.</p>
    </div>
]]>
</Body>
<Summary>More than a dozen members of the UMBC community — including at least eight alumni — collaborated recently to create a music video entitled “Adapt.” Performed by “Ko the Timeless” — AKA Koushik...</Summary>
<Website>https://umbc.edu/stories/alums-collaborate-to-create-music-video/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/123419/guest@my.umbc.edu/4b68b65c528b3b6a72ba848e15eabca1/api/pixel</TrackingUrl>
<Tag>alumni</Tag>
<Group token="umbc-news-magazine">UMBC News &amp;amp; Magazine</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news-magazine</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/original.png?1748556657</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/large.png?1748556657</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/medium.png?1748556657</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/small.png?1748556657</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxsmall.png?1748556657</AvatarUrl>
<Sponsor>UMBC News &amp; Magazine</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 22 Mar 2013 13:45:50 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="26590" important="false" status="posted" url="https://my3.my.umbc.edu/posts/26590">
<Title>The 'Etsy Economy' and Changing the Way We Shop</Title>
<Body>
<![CDATA[
    <div class="html-content">The online handmade marketplace is seeking to reimagine retail.<br><br><a href="http://da.feedsportal.com/r/161393707977/u/49/f/625555/c/34343/s/29e1a761/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/161393707977/u/49/f/625555/c/34343/s/29e1a761/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>The online handmade marketplace is seeking to reimagine retail.</Summary>
<Website>http://feedproxy.google.com/~r/entrepreneur/startingabusiness/~3/GO09UuE1Rco/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/26590/guest@my.umbc.edu/c103b37946e7044bd9f76993a6e031ca/api/pixel</TrackingUrl>
<Group token="entrepreneurship">Alex. Brown Center for Entrepreneurship</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/entrepreneurship</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xsmall.png?1771000363</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/original.jpg?1771000363</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xxlarge.png?1771000363</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xlarge.png?1771000363</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/large.png?1771000363</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/medium.png?1771000363</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/small.png?1771000363</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xsmall.png?1771000363</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xxsmall.png?1771000363</AvatarUrl>
<Sponsor>The Alex. Brown Center for Entrepreneurship</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 22 Mar 2013 13:30:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="123420" important="false" status="posted" url="https://my3.my.umbc.edu/posts/123420">
<Title>Peaceworker Grads Give Back</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <img width="150" height="150" src="https://umbc.edu/wp-content/uploads/2013/03/shriverpeaceworkers_2013-150x150.jpg" alt="" style="max-width: 100%; height: auto;"><a href="http://umbcgiving.files.wordpress.com/2013/03/shriverpeaceworkers_2013.jpg" rel="nofollow external" class="bo"><img alt="shriverpeaceworkers_2013" src="http://umbcgiving.files.wordpress.com/2013/03/shriverpeaceworkers_2013.jpg" width="640" height="480" style="max-width: 100%; height: auto;"></a>The 2011 Shriver Peaceworker grads (L-R): Duncan Cohen, Meghann Shutt, Lindsay Walberg (down front in green), Melissa Esmero (right behind Lindsay), Iris Laurencio (sitting), Dusty Hogenson
    <p>Making a positive mark on society is part of the lifelong drive for graduates of UMBC’s <a rel="nofollow external" class="bo">Shriver Peaceworker Fellows Program</a> — so when we found out that the program’s 2011 cohort made (and fulfilled) a pledge for 100% giving to UMBC, we were obviously excited, but not a bit surprised!</p>
    <p>Program director <strong>Joby Taylor ’05, Ph.D., LLC</strong>, shared news recently that the six members of the Class of 2011 achieved their participation goal, donating $650 to support the purchase of “books and resources for both the Fall and Spring Pracs this year for all 14 of our current Fellows!”</p>
    <p>This is the second cohort to set and achieve such a goal, Taylor said, and he hopes the 2011 group’s efforts spark some similar challenges among the other 18 Peaceworker alumni cohorts. He tries to instill a “Time, Talent, and Treasure” model of philanthropy within these groups of already socially-conscious students.</p>
    <p>“Almost all our grads go into service careers, so they are ‘giving back’ as a way of life really (and many depending on foundations and philanthropy for their own work),” he said. “They are entering important professional fields and positions, but not typically high-paying ones…Still, there is a high sense of connection to our Peaceworker Program and a desire to support it.”</p>
    <p>Congratulations, Peaceworkers!</p>
    </div>
]]>
</Body>
<Summary>The 2011 Shriver Peaceworker grads (L-R): Duncan Cohen, Meghann Shutt, Lindsay Walberg (down front in green), Melissa Esmero (right behind Lindsay), Iris Laurencio (sitting), Dusty Hogenson...</Summary>
<Website>https://umbc.edu/stories/peaceworker-grads-give-back/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/123420/guest@my.umbc.edu/4bda7d6528e96740bb37a2496a67e92c/api/pixel</TrackingUrl>
<Tag>impact</Tag>
<Group token="umbc-news-magazine">UMBC News &amp;amp; Magazine</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news-magazine</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/original.png?1748556657</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/large.png?1748556657</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/medium.png?1748556657</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/small.png?1748556657</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxsmall.png?1748556657</AvatarUrl>
<Sponsor>UMBC News &amp; Magazine</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 22 Mar 2013 13:17:03 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="26587" important="false" status="posted" url="https://my3.my.umbc.edu/posts/26587">
<Title>UMBC&#8217;s Rick Forno on Protecting Your Financial Data From Cyberattacks</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>As more corporate and personal data moves online, Assistant Director at the UMBC Center for Cybersecurity Richard Forno provides tips on protecting financial information before a cyberattack hits.</p>
    
    <p>In this video, Mariko Sanchanta of the Wall Stree Journal Digital Network interviews Dr. Rick Forno on the risks of cyberattacks on banks and other financial insititutions.</p>
    </div>
]]>
</Body>
<Summary>As more corporate and personal data moves online, Assistant Director at the UMBC Center for Cybersecurity Richard Forno provides tips on protecting financial information before a cyberattack hits....</Summary>
<Website>http://www.csee.umbc.edu/2013/03/forno-on-protecting-your-financial-data-from-cyberattacks/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/26587/guest@my.umbc.edu/75e49976734551be0f69747346669e1f/api/pixel</TrackingUrl>
<Tag>cybersecurity</Tag>
<Tag>news</Tag>
<Group token="csee">Computer Science and Electrical Engineering</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/csee</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xsmall.png?1314043393</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/original.png?1314043393</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xxlarge.png?1314043393</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xlarge.png?1314043393</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/large.png?1314043393</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/medium.png?1314043393</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/small.png?1314043393</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xsmall.png?1314043393</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xxsmall.png?1314043393</AvatarUrl>
<Sponsor>Computer Science and Electrical Engineering</Sponsor>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 22 Mar 2013 12:57:25 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="26589" important="false" status="posted" url="https://my3.my.umbc.edu/posts/26589">
<Title>.net Awards 2013: top 10 brilliant newcomers</Title>
<Body>
<![CDATA[
    <div class="html-content">In the second of a series of articles profiling the nominees for this year's .net Awards, we delve into the minds of 10 web pros who've made a splash over the last 12 months<div><table border="0"><tbody><tr>
    <td><a href="http://share.feedsportal.com/viral/sendEmail.cfm?lang=en&amp;title=.net+Awards+2013%3A+top+10+brilliant+newcomers&amp;link=http%3A%2F%2Fwww.netmagazine.com%2Ffeatures%2Fnet-awards-2013-top-10-brilliant-newcomers" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/images/emailthis2.gif" style="max-width: 100%; height: auto;"></a></td>
    <td><a href="http://res.feedsportal.com/viral/bookmark.cfm?title=.net+Awards+2013%3A+top+10+brilliant+newcomers&amp;link=http%3A%2F%2Fwww.netmagazine.com%2Ffeatures%2Fnet-awards-2013-top-10-brilliant-newcomers" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/images/bookmark.gif" style="max-width: 100%; height: auto;"></a></td>
    </tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/161393943413/u/49/f/502346/c/32632/s/29e12587/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/161393943413/u/49/f/502346/c/32632/s/29e12587/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>In the second of a series of articles profiling the nominees for this year's .net Awards, we delve into the minds of 10 web pros who've made a splash over the last 12 months</Summary>
<Website>http://feedproxy.google.com/~r/net/topstories/~3/bPBbCGsmXms/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/26589/guest@my.umbc.edu/f751fac400d0a7586b7856e04880b4a2/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>net</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 22 Mar 2013 12:55:22 -0400</PostedAt>
</NewsItem>

</News>
