{% extends "soc/base.html" %} {% comment %} 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. {% endcomment %} {% load forms_helpers %} {% block page_title %}User Profile{% endblock %} {% block header_title %} {% if user %} Modify Existing User Profile for {{ user.name }} <{{ account.email }}> {% else %} Create a New User Profile for <{{ account.email }}> {% endif %} {% endblock %} {% block body %}

{% block instructions %} Please use this form to set basic site-wide settings for your participation in Google Open Source Programs. {% endblock %}

{% field_as_table_row form.name %} {% field_as_table_row form.link_id %} {% if tos_link %} {% if not user.agreed_to_tos %} {% field_as_table_row form.agreed_to_tos %} {% else %} {% field_as_table_row form.agreed_to_tos_on %} {% endif %} {% endif %}
While you can use your real name, like First Last, please keep in mind that this public name will be used as your alias throughout the site, displayed to all users, for comments, document ownership, and the like. You can change this public name at any time.

Please do not use your real name if you are a minor (not an adult) where you live.
 
This Link ID is used throughout the site when creating various URL links related to you and content you create. As a result, it may only consist of lower ASCII characters, digits, and underscores. Also, it must be unique and not in use by any other user of the site.
 
{{ tos_contents|safe|linebreaks }}
In order to participate on this site, you must agree to the site-wide Terms of Service.

(There may also be additional Terms of Service specific to participation in certain Programs or Groups. Those are agreed to elsewhere on the site, when signing up for the specific participation Roles.)
 
{% block submit_buttons %} {% endblock %}

{% endblock %}