Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
website
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
18
Issues
18
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
briar
website
Commits
efcbe61c
Commit
efcbe61c
authored
Aug 01, 2017
by
akwizgran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't show thank you message if signup form fails validation.
parent
da2d6584
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
97 additions
and
97 deletions
+97
-97
about.html
about.html
+8
-8
apk.html
apk.html
+8
-8
building.html
building.html
+8
-8
copyright.html
copyright.html
+8
-8
download.html
download.html
+8
-8
fdroid.html
fdroid.html
+8
-8
get-involved.html
get-involved.html
+8
-8
hiring.html
hiring.html
+8
-8
how-it-works.html
how-it-works.html
+8
-8
index.html
index.html
+9
-9
news/2017-beta-released-security-audit.html
news/2017-beta-released-security-audit.html
+8
-8
privacy.html
privacy.html
+8
-8
No files found.
about.html
View file @
efcbe61c
...
...
@@ -16,17 +16,17 @@
<a
href=
"index.html"
><div
id=
"logo"
><img
src=
"img/briar_logo_large.png"
alt=
"Briar"
class=
"logo"
/></div></a>
<div
id=
"nav"
>
<div
id=
"signup"
>
<form
id=
"signupform"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
>
<form
id=
"signupform"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
onSubmit=
"submitForm()"
>
<input
placeholder=
"Email address"
type=
"email"
name=
"email"
tabindex=
"2"
></input>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit"
onClick=
"_submit_form();"
>
Keep me updated
</button>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit"
>
Keep me updated
</button>
</form>
<div
id=
"signupconf"
>
Thanks! We'll keep you updated.
</div>
<script
language=
"JavaScript"
>
<!--
function
_submit_f
orm
(){
function
submitF
orm
(){
document
.
getElementById
(
'
signupform
'
).
style
.
display
=
'
none
'
;
document
.
getElementById
(
'
signupconf
'
).
style
.
display
=
'
block
'
;
return
true
return
true
;
}
//-->
</script>
...
...
@@ -75,17 +75,17 @@
<div
id=
"footer_container"
>
<div
id=
"footer"
>
<div
id=
"signup2"
>
<form
id=
"signupform2"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
>
<form
id=
"signupform2"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
onSubmit=
"submitForm2()"
>
<input
placeholder=
"Email address"
type=
"email"
name=
"email"
tabindex=
"2"
></input>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit2"
onClick=
"_submit_form2();"
>
Keep me updated
</button>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit2"
>
Keep me updated
</button>
</form>
<div
id=
"signupconf2"
>
Thanks! We'll keep you updated.
</div>
<script
language=
"JavaScript"
>
<!--
function
_submit_f
orm2
(){
function
submitF
orm2
(){
document
.
getElementById
(
'
signupform2
'
).
style
.
display
=
'
none
'
;
document
.
getElementById
(
'
signupconf2
'
).
style
.
display
=
'
block
'
;
return
true
return
true
;
}
//-->
</script>
...
...
apk.html
View file @
efcbe61c
...
...
@@ -16,17 +16,17 @@
<a
href=
"index.html"
><div
id=
"logo"
><img
src=
"img/briar_logo_large.png"
alt=
"Briar"
class=
"logo"
/></div></a>
<div
id=
"nav"
>
<div
id=
"signup"
>
<form
id=
"signupform"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
>
<form
id=
"signupform"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
onSubmit=
"submitForm()"
>
<input
placeholder=
"Email address"
type=
"email"
name=
"email"
tabindex=
"2"
></input>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit"
onClick=
"_submit_form();"
>
Keep me updated
</button>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit"
>
Keep me updated
</button>
</form>
<div
id=
"signupconf"
>
Thanks! We'll keep you updated.
</div>
<script
language=
"JavaScript"
>
<!--
function
_submit_f
orm
(){
function
submitF
orm
(){
document
.
getElementById
(
'
signupform
'
).
style
.
display
=
'
none
'
;
document
.
getElementById
(
'
signupconf
'
).
style
.
display
=
'
block
'
;
return
true
return
true
;
}
//-->
</script>
...
...
@@ -79,17 +79,17 @@
<div
id=
"footer_container"
>
<div
id=
"footer"
>
<div
id=
"signup2"
>
<form
id=
"signupform2"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
>
<form
id=
"signupform2"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
onSubmit=
"submitForm2()"
>
<input
placeholder=
"Email address"
type=
"email"
name=
"email"
tabindex=
"2"
></input>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit2"
onClick=
"_submit_form2();"
>
Keep me updated
</button>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit2"
>
Keep me updated
</button>
</form>
<div
id=
"signupconf2"
>
Thanks! We'll keep you updated.
</div>
<script
language=
"JavaScript"
>
<!--
function
_submit_f
orm2
(){
function
submitF
orm2
(){
document
.
getElementById
(
'
signupform2
'
).
style
.
display
=
'
none
'
;
document
.
getElementById
(
'
signupconf2
'
).
style
.
display
=
'
block
'
;
return
true
return
true
;
}
//-->
</script>
...
...
building.html
View file @
efcbe61c
...
...
@@ -16,17 +16,17 @@
<a
href=
"index.html"
><div
id=
"logo"
><img
src=
"img/briar_logo_large.png"
alt=
"Briar"
class=
"logo"
/></div></a>
<div
id=
"nav"
>
<div
id=
"signup"
>
<form
id=
"signupform"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
>
<form
id=
"signupform"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
onSubmit=
"submitForm()"
>
<input
placeholder=
"Email address"
type=
"email"
name=
"email"
tabindex=
"2"
></input>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit"
onClick=
"_submit_form();"
>
Keep me updated
</button>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit"
>
Keep me updated
</button>
</form>
<div
id=
"signupconf"
>
Thanks! We'll keep you updated.
</div>
<script
language=
"JavaScript"
>
<!--
function
_submit_f
orm
(){
function
submitF
orm
(){
document
.
getElementById
(
'
signupform
'
).
style
.
display
=
'
none
'
;
document
.
getElementById
(
'
signupconf
'
).
style
.
display
=
'
block
'
;
return
true
return
true
;
}
//-->
</script>
...
...
@@ -105,17 +105,17 @@
<div
id=
"footer_container"
>
<div
id=
"footer"
>
<div
id=
"signup2"
>
<form
id=
"signupform2"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
>
<form
id=
"signupform2"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
onSubmit=
"submitForm2()"
>
<input
placeholder=
"Email address"
type=
"email"
name=
"email"
tabindex=
"2"
></input>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit2"
onClick=
"_submit_form2();"
>
Keep me updated
</button>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit2"
>
Keep me updated
</button>
</form>
<div
id=
"signupconf2"
>
Thanks! We'll keep you updated.
</div>
<script
language=
"JavaScript"
>
<!--
function
_submit_f
orm2
(){
function
submitF
orm2
(){
document
.
getElementById
(
'
signupform2
'
).
style
.
display
=
'
none
'
;
document
.
getElementById
(
'
signupconf2
'
).
style
.
display
=
'
block
'
;
return
true
return
true
;
}
//-->
</script>
...
...
copyright.html
View file @
efcbe61c
...
...
@@ -15,17 +15,17 @@
<a
href=
"index.html"
><div
id=
"logo"
><img
src=
"img/briar_logo_large.png"
alt=
"Briar"
class=
"logo"
/></div></a>
<div
id=
"nav"
>
<div
id=
"signup"
>
<form
id=
"signupform"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
>
<form
id=
"signupform"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
onSubmit=
"submitForm()"
>
<input
placeholder=
"Email address"
type=
"email"
name=
"email"
tabindex=
"2"
></input>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit"
onClick=
"_submit_form();"
>
Keep me updated
</button>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit"
>
Keep me updated
</button>
</form>
<div
id=
"signupconf"
>
Thanks! We'll keep you updated.
</div>
<script
language=
"JavaScript"
>
<!--
function
_submit_f
orm
(){
function
submitF
orm
(){
document
.
getElementById
(
'
signupform
'
).
style
.
display
=
'
none
'
;
document
.
getElementById
(
'
signupconf
'
).
style
.
display
=
'
block
'
;
return
true
return
true
;
}
//-->
</script>
...
...
@@ -68,17 +68,17 @@
<div
id=
"footer_container"
>
<div
id=
"footer"
>
<div
id=
"signup2"
>
<form
id=
"signupform2"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
>
<form
id=
"signupform2"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
onSubmit=
"submitForm2()"
>
<input
placeholder=
"Email address"
type=
"email"
name=
"email"
tabindex=
"2"
></input>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit2"
onClick=
"_submit_form2();"
>
Keep me updated
</button>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit2"
>
Keep me updated
</button>
</form>
<div
id=
"signupconf2"
>
Thanks! We'll keep you updated.
</div>
<script
language=
"JavaScript"
>
<!--
function
_submit_f
orm2
(){
function
submitF
orm2
(){
document
.
getElementById
(
'
signupform2
'
).
style
.
display
=
'
none
'
;
document
.
getElementById
(
'
signupconf2
'
).
style
.
display
=
'
block
'
;
return
true
return
true
;
}
//-->
</script>
...
...
download.html
View file @
efcbe61c
...
...
@@ -16,17 +16,17 @@
<a
href=
"index.html"
><div
id=
"logo"
><img
src=
"img/briar_logo_large.png"
alt=
"Briar"
class=
"logo"
/></div></a>
<div
id=
"nav"
>
<div
id=
"signup"
>
<form
id=
"signupform"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
>
<form
id=
"signupform"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
onSubmit=
"submitForm()"
>
<input
placeholder=
"Email address"
type=
"email"
name=
"email"
tabindex=
"2"
></input>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit"
onClick=
"_submit_form();"
>
Keep me updated
</button>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit"
>
Keep me updated
</button>
</form>
<div
id=
"signupconf"
>
Thanks! We'll keep you updated.
</div>
<script
language=
"JavaScript"
>
<!--
function
_submit_f
orm
(){
function
submitF
orm
(){
document
.
getElementById
(
'
signupform
'
).
style
.
display
=
'
none
'
;
document
.
getElementById
(
'
signupconf
'
).
style
.
display
=
'
block
'
;
return
true
return
true
;
}
//-->
</script>
...
...
@@ -71,17 +71,17 @@
<div
id=
"footer_container"
>
<div
id=
"footer"
>
<div
id=
"signup2"
>
<form
id=
"signupform2"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
>
<form
id=
"signupform2"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
onSubmit=
"submitForm2()"
>
<input
placeholder=
"Email address"
type=
"email"
name=
"email"
tabindex=
"2"
></input>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit2"
onClick=
"_submit_form2();"
>
Keep me updated
</button>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit2"
>
Keep me updated
</button>
</form>
<div
id=
"signupconf2"
>
Thanks! We'll keep you updated.
</div>
<script
language=
"JavaScript"
>
<!--
function
_submit_f
orm2
(){
function
submitF
orm2
(){
document
.
getElementById
(
'
signupform2
'
).
style
.
display
=
'
none
'
;
document
.
getElementById
(
'
signupconf2
'
).
style
.
display
=
'
block
'
;
return
true
return
true
;
}
//-->
</script>
...
...
fdroid.html
View file @
efcbe61c
...
...
@@ -16,17 +16,17 @@
<a
href=
"index.html"
><div
id=
"logo"
><img
src=
"img/briar_logo_large.png"
alt=
"Briar"
class=
"logo"
/></div></a>
<div
id=
"nav"
>
<div
id=
"signup"
>
<form
id=
"signupform"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
>
<form
id=
"signupform"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
onSubmit=
"submitForm()"
>
<input
placeholder=
"Email address"
type=
"email"
name=
"email"
tabindex=
"2"
></input>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit"
onClick=
"_submit_form();"
>
Keep me updated
</button>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit"
>
Keep me updated
</button>
</form>
<div
id=
"signupconf"
>
Thanks! We'll keep you updated.
</div>
<script
language=
"JavaScript"
>
<!--
function
_submit_f
orm
(){
function
submitF
orm
(){
document
.
getElementById
(
'
signupform
'
).
style
.
display
=
'
none
'
;
document
.
getElementById
(
'
signupconf
'
).
style
.
display
=
'
block
'
;
return
true
return
true
;
}
//-->
</script>
...
...
@@ -75,17 +75,17 @@
<div
id=
"footer_container"
>
<div
id=
"footer"
>
<div
id=
"signup2"
>
<form
id=
"signupform2"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
>
<form
id=
"signupform2"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
onSubmit=
"submitForm2()"
>
<input
placeholder=
"Email address"
type=
"email"
name=
"email"
tabindex=
"2"
></input>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit2"
onClick=
"_submit_form2();"
>
Keep me updated
</button>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit2"
>
Keep me updated
</button>
</form>
<div
id=
"signupconf2"
>
Thanks! We'll keep you updated.
</div>
<script
language=
"JavaScript"
>
<!--
function
_submit_f
orm2
(){
function
submitF
orm2
(){
document
.
getElementById
(
'
signupform2
'
).
style
.
display
=
'
none
'
;
document
.
getElementById
(
'
signupconf2
'
).
style
.
display
=
'
block
'
;
return
true
return
true
;
}
//-->
</script>
...
...
get-involved.html
View file @
efcbe61c
...
...
@@ -16,17 +16,17 @@
<a
href=
"index.html"
><div
id=
"logo"
><img
src=
"img/briar_logo_large.png"
alt=
"Briar"
class=
"logo"
/></div></a>
<div
id=
"nav"
>
<div
id=
"signup"
>
<form
id=
"signupform"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
>
<form
id=
"signupform"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
onSubmit=
"submitForm()"
>
<input
placeholder=
"Email address"
type=
"email"
name=
"email"
tabindex=
"2"
></input>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit"
onClick=
"_submit_form();"
>
Keep me updated
</button>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit"
>
Keep me updated
</button>
</form>
<div
id=
"signupconf"
>
Thanks! We'll keep you updated.
</div>
<script
language=
"JavaScript"
>
<!--
function
_submit_f
orm
(){
function
submitF
orm
(){
document
.
getElementById
(
'
signupform
'
).
style
.
display
=
'
none
'
;
document
.
getElementById
(
'
signupconf
'
).
style
.
display
=
'
block
'
;
return
true
return
true
;
}
//-->
</script>
...
...
@@ -65,17 +65,17 @@
<div
id=
"footer_container"
>
<div
id=
"footer"
>
<div
id=
"signup2"
>
<form
id=
"signupform2"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
>
<form
id=
"signupform2"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
onSubmit=
"submitForm2()"
>
<input
placeholder=
"Email address"
type=
"email"
name=
"email"
tabindex=
"2"
></input>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit2"
onClick=
"_submit_form2();"
>
Keep me updated
</button>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit2"
>
Keep me updated
</button>
</form>
<div
id=
"signupconf2"
>
Thanks! We'll keep you updated.
</div>
<script
language=
"JavaScript"
>
<!--
function
_submit_f
orm2
(){
function
submitF
orm2
(){
document
.
getElementById
(
'
signupform2
'
).
style
.
display
=
'
none
'
;
document
.
getElementById
(
'
signupconf2
'
).
style
.
display
=
'
block
'
;
return
true
return
true
;
}
//-->
</script>
...
...
hiring.html
View file @
efcbe61c
...
...
@@ -16,17 +16,17 @@
<a
href=
"index.html"
><div
id=
"logo"
><img
src=
"img/briar_logo_large.png"
alt=
"Briar"
class=
"logo"
/></div></a>
<div
id=
"nav"
>
<div
id=
"signup"
>
<form
id=
"signupform"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
>
<form
id=
"signupform"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
onSubmit=
"submitForm()"
>
<input
placeholder=
"Email address"
type=
"email"
name=
"email"
tabindex=
"2"
></input>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit"
onClick=
"_submit_form();"
>
Keep me updated
</button>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit"
>
Keep me updated
</button>
</form>
<div
id=
"signupconf"
>
Thanks! We'll keep you updated.
</div>
<script
language=
"JavaScript"
>
<!--
function
_submit_f
orm
(){
function
submitF
orm
(){
document
.
getElementById
(
'
signupform
'
).
style
.
display
=
'
none
'
;
document
.
getElementById
(
'
signupconf
'
).
style
.
display
=
'
block
'
;
return
true
return
true
;
}
//-->
</script>
...
...
@@ -62,17 +62,17 @@
<div
id=
"footer_container"
>
<div
id=
"footer"
>
<div
id=
"signup2"
>
<form
id=
"signupform2"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
>
<form
id=
"signupform2"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
onSubmit=
"submitForm2()"
>
<input
placeholder=
"Email address"
type=
"email"
name=
"email"
tabindex=
"2"
></input>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit2"
onClick=
"_submit_form2();"
>
Keep me updated
</button>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit2"
>
Keep me updated
</button>
</form>
<div
id=
"signupconf2"
>
Thanks! We'll keep you updated.
</div>
<script
language=
"JavaScript"
>
<!--
function
_submit_f
orm2
(){
function
submitF
orm2
(){
document
.
getElementById
(
'
signupform2
'
).
style
.
display
=
'
none
'
;
document
.
getElementById
(
'
signupconf2
'
).
style
.
display
=
'
block
'
;
return
true
return
true
;
}
//-->
</script>
...
...
how-it-works.html
View file @
efcbe61c
...
...
@@ -16,17 +16,17 @@
<a
href=
"index.html"
><div
id=
"logo"
><img
src=
"img/briar_logo_large.png"
alt=
"Briar"
class=
"logo"
/></div></a>
<div
id=
"nav"
>
<div
id=
"signup"
>
<form
id=
"signupform"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
>
<form
id=
"signupform"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
onSubmit=
"submitForm()"
>
<input
placeholder=
"Email address"
type=
"email"
name=
"email"
tabindex=
"2"
></input>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit"
onClick=
"_submit_form();"
>
Keep me updated
</button>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit"
>
Keep me updated
</button>
</form>
<div
id=
"signupconf"
>
Thanks! We'll keep you updated.
</div>
<script
language=
"JavaScript"
>
<!--
function
_submit_f
orm
(){
function
submitF
orm
(){
document
.
getElementById
(
'
signupform
'
).
style
.
display
=
'
none
'
;
document
.
getElementById
(
'
signupconf
'
).
style
.
display
=
'
block
'
;
return
true
return
true
;
}
//-->
</script>
...
...
@@ -108,17 +108,17 @@ servers to block.</li>
<div
id=
"footer_container"
>
<div
id=
"footer"
>
<div
id=
"signup2"
>
<form
id=
"signupform2"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
>
<form
id=
"signupform2"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
onSubmit=
"submitForm2()"
>
<input
placeholder=
"Email address"
type=
"email"
name=
"email"
tabindex=
"2"
></input>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit2"
onClick=
"_submit_form2();"
>
Keep me updated
</button>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit2"
>
Keep me updated
</button>
</form>
<div
id=
"signupconf2"
>
Thanks! We'll keep you updated.
</div>
<script
language=
"JavaScript"
>
<!--
function
_submit_f
orm2
(){
function
submitF
orm2
(){
document
.
getElementById
(
'
signupform2
'
).
style
.
display
=
'
none
'
;
document
.
getElementById
(
'
signupconf2
'
).
style
.
display
=
'
block
'
;
return
true
return
true
;
}
//-->
</script>
...
...
index.html
View file @
efcbe61c
...
...
@@ -16,22 +16,22 @@
<a
href=
"index.html"
><div
id=
"logo"
><img
src=
"img/briar_logo_large.png"
alt=
"Briar"
class=
"logo"
/></div></a>
<div
id=
"nav"
>
<div
id=
"signup"
>
<form
id=
"signupform"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
>
<form
id=
"signupform"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
onSubmit=
"submitForm()"
>
<input
placeholder=
"Email address"
type=
"email"
name=
"email"
tabindex=
"2"
></input>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit"
onClick=
"_submit_form();"
>
Keep me updated
</button>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit"
>
Keep me updated
</button>
</form>
<div
id=
"signupconf"
>
Thanks! We'll keep you updated.
</div>
<script
language=
"JavaScript"
>
<!--
function
_submit_f
orm
(){
function
submitF
orm
(){
document
.
getElementById
(
'
signupform
'
).
style
.
display
=
'
none
'
;
document
.
getElementById
(
'
signupconf
'
).
style
.
display
=
'
block
'
;
return
true
return
true
;
}
//-->
</script>
</div>
<!-- signup -->
<label
for=
"menu-toggle"
><img
src=
"img/menu.png"
></label>
<label
for=
"menu-toggle"
><img
src=
"img/menu.png"
/
></label>
<input
type=
"checkbox"
id=
"menu-toggle"
/>
<ul
id=
"menu"
>
<li><a
href=
"index.html"
id=
"indexnav"
>
Home
</a></li>
...
...
@@ -90,17 +90,17 @@
<div
id=
"footer_container"
>
<div
id=
"footer"
>
<div
id=
"signup2"
>
<form
id=
"signupform2"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
>
<form
id=
"signupform2"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
onSubmit=
"submitForm2()"
>
<input
placeholder=
"Email address"
type=
"email"
name=
"email"
tabindex=
"2"
></input>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit2"
onClick=
"_submit_form2();"
>
Keep me updated
</button>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit2"
>
Keep me updated
</button>
</form>
<div
id=
"signupconf2"
>
Thanks! We'll keep you updated.
</div>
<script
language=
"JavaScript"
>
<!--
function
_submit_f
orm2
(){
function
submitF
orm2
(){
document
.
getElementById
(
'
signupform2
'
).
style
.
display
=
'
none
'
;
document
.
getElementById
(
'
signupconf2
'
).
style
.
display
=
'
block
'
;
return
true
return
true
;
}
//-->
</script>
...
...
news/2017-beta-released-security-audit.html
View file @
efcbe61c
...
...
@@ -15,17 +15,17 @@
<a
href=
"../index.html"
><div
id=
"logo"
><img
src=
"../img/briar_logo_large.png"
alt=
"Briar"
class=
"logo"
/></div></a>
<div
id=
"nav"
>
<div
id=
"signup"
>
<form
id=
"signupform"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
>
<form
id=
"signupform"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
onSubmit=
"submitForm()"
>
<input
placeholder=
"Email address"
type=
"email"
name=
"email"
tabindex=
"2"
></input>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit"
onClick=
"_submit_form();"
>
Keep me updated
</button>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit"
>
Keep me updated
</button>
</form>
<div
id=
"signupconf"
>
Thanks! We'll keep you updated.
</div>
<script
language=
"JavaScript"
>
<!--
function
_submit_f
orm
(){
function
submitF
orm
(){
document
.
getElementById
(
'
signupform
'
).
style
.
display
=
'
none
'
;
document
.
getElementById
(
'
signupconf
'
).
style
.
display
=
'
block
'
;
return
true
return
true
;
}
//-->
</script>
...
...
@@ -126,17 +126,17 @@
<div
id=
"footer_container"
>
<div
id=
"footer"
>
<div
id=
"signup2"
>
<form
id=
"signupform2"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
>
<form
id=
"signupform2"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
onSubmit=
"submitForm2()"
>
<input
placeholder=
"Email address"
type=
"email"
name=
"email"
tabindex=
"2"
></input>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit2"
onClick=
"_submit_form2();"
>
Keep me updated
</button>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit2"
>
Keep me updated
</button>
</form>
<div
id=
"signupconf2"
>
Thanks! We'll keep you updated.
</div>
<script
language=
"JavaScript"
>
<!--
function
_submit_f
orm2
(){
function
submitF
orm2
(){
document
.
getElementById
(
'
signupform2
'
).
style
.
display
=
'
none
'
;
document
.
getElementById
(
'
signupconf2
'
).
style
.
display
=
'
block
'
;
return
true
return
true
;
}
//-->
</script>
...
...
privacy.html
View file @
efcbe61c
...
...
@@ -16,17 +16,17 @@
<a
href=
"index.html"
><div
id=
"logo"
><img
src=
"img/briar_logo_large.png"
alt=
"Briar"
class=
"logo"
/></div></a>
<div
id=
"nav"
>
<div
id=
"signup"
>
<form
id=
"signupform"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
>
<form
id=
"signupform"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
onSubmit=
"submitForm()"
>
<input
placeholder=
"Email address"
type=
"email"
name=
"email"
tabindex=
"2"
></input>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit"
onClick=
"_submit_form();"
>
Keep me updated
</button>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit"
>
Keep me updated
</button>
</form>
<div
id=
"signupconf"
>
Thanks! We'll keep you updated.
</div>
<script
language=
"JavaScript"
>
<!--
function
_submit_f
orm
(){
function
submitF
orm
(){
document
.
getElementById
(
'
signupform
'
).
style
.
display
=
'
none
'
;
document
.
getElementById
(
'
signupconf
'
).
style
.
display
=
'
block
'
;
return
true
return
true
;
}
//-->
</script>
...
...
@@ -80,17 +80,17 @@
<div
id=
"footer_container"
>
<div
id=
"footer"
>
<div
id=
"signup2"
>
<form
id=
"signupform2"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
>
<form
id=
"signupform2"
action=
"https://sourceforge.net/projects/briar/lists/briar-announce"
target=
"_blank"
method=
"get"
onSubmit=
"submitForm2()"
>
<input
placeholder=
"Email address"
type=
"email"
name=
"email"
tabindex=
"2"
></input>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit2"
onClick=
"_submit_form2();"
>
Keep me updated
</button>
<button
name=
"submit"
type=
"submit"
id=
"signup-submit2"
>
Keep me updated
</button>
</form>
<div
id=
"signupconf2"
>
Thanks! We'll keep you updated.
</div>
<script
language=
"JavaScript"
>
<!--
function
_submit_f
orm2
(){
function
submitF
orm2
(){
document
.
getElementById
(
'
signupform2
'
).
style
.
display
=
'
none
'
;
document
.
getElementById
(
'
signupconf2
'
).
style
.
display
=
'
block
'
;
return
true
return
true
;
}
//-->
</script>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment