Izet Redžepagić

Izet Redžepagić (1955 2007) was a professional footballer who played in the former Yugoslavia and Turkey.

Izet Redžepagić
Personal information
Date of birth 1955
Place of birth SFR Yugoslavia
Date of death 2007
Place of death Croatia
Playing position(s) Forward
Senior career*
Years Team Apps (Gls)
1976–1982 Borac Banja Luka 127 (15)
1982–1986 NK Osijek 60 (12)
1986–1987 Dardanelspor 22 (3)
* Senior club appearances and goals counted for the domestic league only

Career

Born in Yugoslavia, Redžepagić started playing football for local side FK Borac Banja Luka in the Yugoslav First League. He would also join fellow First League side NK Osijek.

In 1986, Redžepagić moved to Turkey, joining Süper Lig side Dardanelspor for one seasons. He made 22 leagues appearances for the club.

Personal

Redžepagić died in 2007.[1]

gollark: Unrelated: slowly, my reactor efficiency goes up... soon, it shall reach a slightly higher percentage.
gollark: It simulates injuries to individual bodyparts.
gollark: Dwarf Fortress!
gollark: We need some sort of Rust-based RPG, because Rust is good, all Hail Rust Rust Rust, Rust Rust, Rust... Rust.
gollark: ```rustuse wasm_bindgen::prelude::*;#[derive(Default)]pub struct Counter { value: i32,}pub enum Message { Increment, Decrement, Reset,}impl draco::App for Counter { type Message = Message; fn update(&mut self, _: &draco::Mailbox<Message>, message: Self::Message) { use self::Message::*; match message { Increment => self.value += 1, Decrement => self.value -= 1, Reset => self.value = 0, } } fn render(&self) -> draco::Node<Self::Message> { use draco::html as h; h::div() .push(h::button().push("-").on("click", |_| Message::Decrement)) .push(self.value) .push(h::button().push("+").on("click", |_| Message::Increment)) .push(h::button().push("Reset").on("click", |_| Message::Reset)) .into() }}#[wasm_bindgen]pub fn start() { draco::start( Counter::default(), draco::select("main").expect("main").into(), );}pub fn main() {}```RUSTRUSTRUSTRUST

References

  1. "In memoriam - Izet Redzepagic" (in Bosnian). SLIKE I DOGADJAJI. 17 July 2007.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.